.register-page{

    background:#f8f9fa;

}

.register-card{

    background:#fff;

    border-radius:22px;

    padding:45px;

    border:1px solid #ececec;

    box-shadow:0 .5rem 1.5rem rgba(0,0,0,.08);

}

.register-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#198754;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2.3rem;

    margin-bottom:20px;

}

.register-title{

    font-weight:700;

}

.register-subtitle{

    color:#6c757d;

    max-width:650px;

    margin:auto;

}

.form-section{

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:16px;

    padding:30px;

    margin-bottom:35px;

}

.form-section h4{

    font-size:1.15rem;

    font-weight:700;

    margin-bottom:25px;

}

.form-label{

    font-weight:600;

}

.form-control,
.form-select{

    min-height:52px;

    border-radius:12px;

}

.form-control:focus,
.form-select:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

.register-card .btn-primary{

    min-width:260px;

    min-height:54px;

    border-radius:14px;

    font-weight:600;

}

@media (max-width:768px){

    .register-card{

        padding:25px;

    }

    .form-section{

        padding:20px;

    }

}