 /*      body{
    background:#f4f7fb;
    font-family:Arial, sans-serif;
}
*/
body{
    margin:0;
    padding:0;
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:Arial, sans-serif;
}

/* LOGIN PAGE */
.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:950px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.login-left{
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:60px 40px;
    height:100%;
}

.login-left h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.login-left p{
    color:#ddd;
    line-height:1.7;
}

.login-feature{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
}

.login-feature-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.login-right{
    padding:50px 40px;
}

.login-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
}

.login-subtitle{
    color:#777;
    margin-bottom:30px;
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding-left:45px;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#0d6efd;
}

.input-group{
    position:relative;
}

.input-icon{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    z-index:10;
}

.login-btn{
    height:58px;
    border:none;
    width:100%;
    border-radius:4px;
    background:linear-gradient(
        135deg,
        #c8a84b 0%,
        #e3c976 50%,
        #c8a84b 100%
    );
    color:#071a2f;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(200,168,75,0.35);
}

.login-btn i{
    margin-right:8px;
}

.login-btn:hover{
    background:linear-gradient(
        135deg,
        #e3c976 0%,
        #f0db97 50%,
        #e3c976 100%
    );
    color:#071a2f;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(200,168,75,0.45);
}

.login-btn:active{
    transform:translateY(0);
}

.login-btn:focus{
    outline:none;
    box-shadow:
    0 0 0 4px rgba(200,168,75,0.18),
    0 8px 25px rgba(200,168,75,0.35);
}
.extra-links{
    margin-top:20px;
    text-align:center;
    font-size:14px;
}

.extra-links2{
    margin-top:10px;
    text-align:center;
    font-size:14px;
}

.extra-links a{
    text-decoration:none;
    color:#e3c976;
    font-weight:600;
}

.extra-links2 a{
    text-decoration:none;
    color:#e3c976;
    font-weight:600;
}

@media(max-width:768px){

    .login-left{
        padding:40px 25px;
    }

    .login-right{
        padding:40px 25px;
    }

}


/* REGISTER CARD */
.register-card{
    width:100%;
    max-width:450px;
    background:rgba(255,255,255,0.97);
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.35);
    animation:fadeIn 0.6s ease;
}

/* LOGO */
.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo i{
    font-size:45px;
    color:#c8a84b;
}

.logo h2{
    margin-top:10px;
    font-weight:700;
    color:#0f172a;
}

.logo p{
    color:#6b7280;
    font-size:14px;
}

/* INPUTS */

.form-controls{
    height:52px;
    border-radius:10px;
    border:1px solid #d1d5db;
    padding-left:45px;
    font-size:15px;
}

.form-controls:focus{
    box-shadow:none;
    border-color:#0d6efd;
}

  
.input-groups{
    position:relative;
}

.input-groups i{
    position:absolute;
    top:17px;
    left:15px;
    color:#6b7280;
    z-index:10;
}

/* BUTTON */
.register-btn{
    height:58px;
    border:none;
    width:100%;
    border-radius:4px;
    background:linear-gradient(
        135deg,
        #c8a84b 0%,
        #e3c976 50%,
        #c8a84b 100%
    );
    color:#071a2f;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(200,168,75,0.35);
}

.register-btn i{
    margin-right:8px;
}

.register-btn:hover{
    background:linear-gradient(
        135deg,
        #e3c976 0%,
        #f0db97 50%,
        #e3c976 100%
    );
    color:#071a2f;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(200,168,75,0.45);
}

.register-btn:active{
    transform:translateY(0);
}

.register-btn:focus{
    outline:none;
    box-shadow:
    0 0 0 4px rgba(200,168,75,0.18),
    0 8px 25px rgba(200,168,75,0.35);
}

/* FOOT TEXT */
.bottom-text{
    text-align:center;
    margin-top:18px;
    color:#6b7280;
}

.bottom-text a{
    color:#e3c976;
    text-decoration:none;
    font-weight:600;
}

/* FEATURES */
.features{
    margin-top:25px;
}

.feature{
    display:flex;
    align-items:center;
    margin-bottom:12px;
    color:#374151;
    font-size:14px;
}

.feature i{
    color:#198754;
    margin-right:10px;
}

/* ANIMATION */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* 
.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:950px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.login-left{
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:60px 40px;
    height:100%;
}

.login-left h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.login-left p{
    color:#ddd;
    line-height:1.7;
}

.login-feature{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
}

.login-feature-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.login-right{
    padding:50px 40px;
}

.login-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
}

.login-subtitle{
    color:#777;
    margin-bottom:30px;
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding-left:45px;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#0d6efd;
}

.input-group{
    position:relative;
}

.input-icon{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    z-index:10;
}

.login-btn{
    height:58px;
    border:none;
    width:100%;
    border-radius:4px;
    background:linear-gradient(
        135deg,
        #c8a84b 0%,
        #e3c976 50%,
        #c8a84b 100%
    );
    color:#071a2f;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(200,168,75,0.35);
}

.login-btn i{
    margin-right:8px;
}

.login-btn:hover{
    background:linear-gradient(
        135deg,
        #e3c976 0%,
        #f0db97 50%,
        #e3c976 100%
    );
    color:#071a2f;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(200,168,75,0.45);
}

.login-btn:active{
    transform:translateY(0);
}

.login-btn:focus{
    outline:none;
    box-shadow:
    0 0 0 4px rgba(200,168,75,0.18),
    0 8px 25px rgba(200,168,75,0.35);
}
.extra-links{
    margin-top:20px;
    text-align:center;
    font-size:14px;
}

.extra-links2{
    margin-top:10px;
    text-align:center;
    font-size:14px;
}

.extra-links a{
    text-decoration:none;
    color:#e3c976;
    font-weight:600;
}

.extra-links2 a{
    text-decoration:none;
    color:#e3c976;
    font-weight:600;
}

.bottom-text{
    text-align:center;
    margin-top:18px;
    color:#6b7280;
    text-decoration: none;
}


@media(max-width:768px){

    .login-left{
        padding:40px 25px;
    }

    .login-right{
        padding:40px 25px;
    }

}

/* LOGIN PAGE 
.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:950px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}
/*
.login-left{
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:60px 40px;
    height:100%;
}

.login-left h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.login-left p{
    color:#ddd;
    line-height:1.7;
}

.login-feature{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
}

.login-feature-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.login-right{
    padding:50px 40px;
}

.login-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
}

.login-title2{
    font-size:20px;
    font-weight:600;
    margin-bottom:8px;
}

.login-subtitle{
    color:#777;
    margin-bottom:30px;
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding-left:45px;
    box-shadow:none !important;
}
/*
.form-control:focus{
    border-color:#0d6efd;
}
*
.input-group{
    position:relative;
}

.input-icon{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    z-index:10;
}
/*
.login-btn{
    height:55px;
    border:none;
    border-radius:12px;
    background:#0d6efd;
    color:#fff;
    font-weight:600;
    transition:0.3s;
}

.login-btn:hover{
    background:#0b5ed7;
    transform:translateY(-2px);
}

.extra-links{
    margin-top:20px;
    text-align:center;
    font-size:14px;
}

.extra-links2{
    margin-top:10px;
    text-align:center;
    font-size:14px;
}
/*
.extra-links a{
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
}

.extra-links2 a{
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
}
*/
@media(max-width:768px){

    .login-left{
        padding:40px 25px;
    }

    .login-right{
        padding:40px 25px;
    }

}