/* ===================================
   STUDENT REGISTER PAGE
=================================== */

.student-register-page{

    padding:120px 0 100px;

}

/* ===================================
   CONTAINER
=================================== */

.student-register-page .container{

    width:min(1100px,92%);

    margin:0 auto;

}

/* ===================================
   HERO
=================================== */

.register-hero{

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(99,102,241,.12);

    border:1px solid rgba(99,102,241,.35);

    color:#8f84ff;

    font-weight:600;

}

.register-hero h1{

    margin:28px auto;

    max-width:820px;

    font-size:clamp(2.5rem,5vw,4.3rem);

    font-weight:800;

    line-height:1.15;

    background:linear-gradient(
        90deg,
        #ffffff,
        #8b82ff,
        #4ca8ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-text{

    max-width:760px;

    margin:auto;

    color:#d5dcf5;

    line-height:2;

    font-size:1.12rem;

}

/* ===================================
   FORM
=================================== */

.student-form{

    max-width:760px;

    margin:0 auto;

    padding:45px;

    border-radius:30px;

    background:rgba(18,24,47,.72);

    border:1px solid rgba(120,140,255,.15);

    backdrop-filter:blur(18px);

    box-shadow:0 25px 60px rgba(76,99,255,.15);

}

.student-form h2{

    text-align:center;

    margin-bottom:35px;

    font-size:2rem;

    background:linear-gradient(
        90deg,
        #8b82ff,
        #58a7ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.student-form input,

.student-form select,

.student-form textarea{

    width:100%;

    margin-bottom:20px;

    padding:16px 18px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:#161d34;

    color:#fff;

    font-size:1rem;

    outline:none;

    transition:.3s;

}

.student-form textarea{

    resize:vertical;

    min-height:120px;

}

.student-form input:focus,

.student-form select:focus,

.student-form textarea:focus{

    border-color:#6d63ff;

    box-shadow:0 0 18px rgba(109,99,255,.30);

}

.student-form input::placeholder,

.student-form textarea::placeholder{

    color:#98a2c9;

}

.student-form select{

    cursor:pointer;

}

/* ===================================
   TERMS
=================================== */

.terms{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#d7def7;

    margin:15px 0 30px;

    font-size:.96rem;

    line-height:1.7;

}

.terms input{

    width:auto;

    margin-top:4px;

}

/* ===================================
   BUTTON
=================================== */

.student-form button{

    width:100%;

    border:none;

    cursor:pointer;

    padding:18px;

    border-radius:18px;

    font-size:1.08rem;

    font-weight:700;

    color:#fff;

    background:linear-gradient(
        90deg,
        #5d5bff,
        #9446ff
    );

    transition:.3s;

}

.student-form button:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 35px rgba(103,91,255,.35);

}

.login-text{
    margin-top:20px;
    text-align:center;
    color:#cfd5ec;
    font-size:0.98rem;
}

.login-link{
    color:#8b7dff;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.login-link:hover{
    color:#b39cff;
    text-decoration:underline;
}

/* ===================================
   BENEFITS
=================================== */

.register-benefits{

    margin-top:70px;

}

.register-benefits .container{

    padding:45px;

    border-radius:28px;

    background:rgba(18,24,47,.72);

    border:1px solid rgba(120,140,255,.15);

    backdrop-filter:blur(18px);

}

.register-benefits h2{

    margin-bottom:28px;

    font-size:2rem;

    text-align:center;

    background:linear-gradient(
        90deg,
        #8b82ff,
        #58a7ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.register-benefits ul{

    list-style:none;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    padding:0;

}

.register-benefits li{

    padding:18px 20px;

    border-radius:18px;

    background:#161d34;

    border:1px solid rgba(255,255,255,.06);

    color:#d9e0fa;

    transition:.3s;

}

.register-benefits li:hover{

    transform:translateY(-3px);

    border-color:#6d63ff;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:768px){

.student-register-page{

padding:100px 0 80px;

}

.student-form{

padding:28px;

border-radius:24px;

}

.register-hero h1{

font-size:2.2rem;

}

.hero-text{

font-size:1rem;

line-height:1.9;

}

.student-form h2{

font-size:1.7rem;

}

.student-form input,

.student-form select,

.student-form textarea{

padding:15px;

font-size:.96rem;

}

.student-form button{

padding:16px;

font-size:1rem;

}

.register-benefits .container{

padding:28px;

}

.register-benefits ul{

grid-template-columns:1fr;

}

.register-benefits h2{

font-size:1.7rem;

}

  }
