/*=========================================
STUDENT LOGIN HERO
=========================================*/

.student-login-hero{

    padding:120px 0 90px;

    background:linear-gradient(135deg,#0f172a,#111827,#1e293b);

    color:#ffffff;

    overflow:hidden;

}

.student-login-hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(212,175,55,.15);

    color:#d4af37;

    border:1px solid rgba(212,175,55,.4);

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.student-login-left h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.student-login-left h1 span{

    color:#d4af37;

}

.student-login-left p{

    font-size:18px;

    color:#d1d5db;

    line-height:32px;

    max-width:620px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#d4af37;

    color:#111827;

    text-decoration:none;

    padding:16px 34px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    background:#f3c54b;

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid #d4af37;

    color:#d4af37;

    text-decoration:none;

    padding:16px 34px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.btn-outline:hover{

    background:#d4af37;

    color:#111827;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#ffffff;

    font-weight:500;

}

.feature i{

    color:#d4af37;

    font-size:18px;

}

.student-login-right{

    text-align:center;

}

.student-login-right img{

    width:100%;

    max-width:560px;

    animation:floatHero 4s ease-in-out infinite;

}

@keyframes floatHero{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================
Responsive
====================*/

@media(max-width:992px){

.student-login-hero-content{

grid-template-columns:1fr;

text-align:center;

}

.student-login-left p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

grid-template-columns:1fr 1fr;

margin-top:20px;

}

.student-login-right{

margin-top:40px;

}

}

@media(max-width:768px){

.student-login-hero{

padding:90px 0 70px;

}

.student-login-left h1{

font-size:40px;

}

.student-login-left p{

font-size:16px;

line-height:28px;

}

.hero-features{

grid-template-columns:1fr;

}

.btn-primary,

.btn-outline{

width:100%;

text-align:center;

}

}
/*=========================================
STUDENT LOGIN FORM
=========================================*/

.student-login-form-section{

    padding:100px 0;

    background:#f8fafc;

}

.login-wrapper{

    display:grid;

    grid-template-columns:480px 1fr;

    gap:50px;

    align-items:center;

}

.login-card{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(20px);

    border-radius:20px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.login-header{

    text-align:center;

    margin-bottom:35px;

}

.login-icon{

    width:80px;

    height:80px;

    margin:auto;

    background:#111827;

    color:#d4af37;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:20px;

}

.login-header h2{

    font-size:34px;

    color:#111827;

    margin-bottom:10px;

}

.login-header p{

    color:#6b7280;

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

}

.input-box{

    position:relative;

}

.input-box i:first-child{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#d4af37;

}

.input-box input{

    width:100%;

    padding:15px 50px;

    border:1px solid #d1d5db;

    border-radius:10px;

    outline:none;

    transition:.3s;

}

.input-box input:focus{

    border-color:#d4af37;

    box-shadow:0 0 0 3px rgba(212,175,55,.15);

}

.toggle-password{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    cursor:pointer;

    color:#888;

}

.login-options{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;

    font-size:15px;

}

.login-options a{

    color:#d4af37;

    text-decoration:none;

}

.login-btn{

    width:100%;

    padding:16px;

    background:#d4af37;

    color:#111827;

    border:none;

    border-radius:10px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.login-btn:hover{

    background:#f5c84a;

    transform:translateY(-3px);

}

/* Right */

.portal-info h2{

    font-size:42px;

    color:#111827;

    margin-bottom:20px;

}

.portal-info p{

    color:#6b7280;

    line-height:30px;

    margin-bottom:35px;

}

.feature-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:20px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.feature-item:hover{

    transform:translateY(-6px);

}

.feature-item i{

    font-size:24px;

    color:#d4af37;

}

/* Responsive */

@media(max-width:992px){

.login-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.student-login-form-section{

padding:70px 0;

}

.login-card{

padding:25px;

}

.feature-list{

grid-template-columns:1fr;

}

.portal-info h2{

font-size:32px;

}

.login-options{

flex-direction:column;

gap:15px;

}

}
/*=========================================
STUDENT PORTAL FEATURES
=========================================*/

.student-portal-features{

    padding:110px 0;

    background:#ffffff;

}

.portal-features-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.portal-card{

    background:#ffffff;

    border-radius:18px;

    padding:35px 30px;

    text-align:center;

    border:1px solid #e5e7eb;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.portal-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.portal-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#111827;

    color:#d4af37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

    transition:.35s;

}

.portal-card:hover .portal-icon{

    background:#d4af37;

    color:#111827;

    transform:rotateY(180deg);

}

.portal-card h3{

    font-size:22px;

    color:#111827;

    margin-bottom:15px;

}

.portal-card p{

    color:#6b7280;

    line-height:28px;

    font-size:15px;

}

/* Responsive */

@media(max-width:1200px){

.portal-features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.student-portal-features{

padding:80px 0;

}

.portal-features-grid{

grid-template-columns:1fr;

gap:25px;

}

.portal-card{

padding:30px 22px;

}

.portal-icon{

width:75px;

height:75px;

font-size:28px;

}

.portal-card h3{

font-size:20px;

}

}
/*=========================================
STUDENT LOGIN HELP
=========================================*/

.student-login-help{

    padding:110px 0;

    background:#f8fafc;

}

.help-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    margin-top:60px;

}

.support-cards{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.support-card{

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    display:flex;

    gap:25px;

    align-items:flex-start;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    border-left:5px solid transparent;

    transition:.35s;

}

.support-card:hover{

    border-left-color:#d4af37;

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.support-icon{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:50%;

    background:#111827;

    color:#d4af37;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.support-card h3{

    margin-bottom:12px;

    color:#111827;

    font-size:24px;

}

.support-card p{

    color:#6b7280;

    line-height:28px;

    margin-bottom:15px;

}

.support-card a{

    color:#d4af37;

    font-weight:700;

    text-decoration:none;

}

.support-info{

    background:#111827;

    color:#ffffff;

    border-radius:20px;

    padding:35px;

    position:sticky;

    top:120px;

}

.support-info h3{

    font-size:30px;

    margin-bottom:25px;

}

.support-info ul{

    list-style:none;

    padding:0;

    margin:0;

}

.support-info li{

    display:flex;

    gap:15px;

    margin-bottom:22px;

    line-height:28px;

}

.support-info li i{

    color:#d4af37;

    margin-top:4px;

}

.support-note{

    margin-top:30px;

    padding:20px;

    background:rgba(255,255,255,.08);

    border-radius:12px;

    border-left:4px solid #d4af37;

    display:flex;

    gap:15px;

}

.support-note i{

    color:#d4af37;

    font-size:22px;

    margin-top:3px;

}

.support-note p{

    margin:0;

    color:#e5e7eb;

    line-height:28px;

}

/* Responsive */

@media(max-width:992px){

.help-grid{

grid-template-columns:1fr;

}

.support-info{

position:static;

}

}

@media(max-width:768px){

.student-login-help{

padding:80px 0;

}

.support-card{

flex-direction:column;

text-align:center;

align-items:center;

}

.support-info{

padding:25px;

}

.support-info li{

align-items:flex-start;

}

.support-note{

flex-direction:column;

text-align:center;

}

}