/* =====================================
   GEMA AI - AUTHENTICATION STYLE
   Login & Register Page
   ===================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    min-height:100vh;
    background:
    linear-gradient(
        135deg,
        #eef5ff,
        #ffffff
    );
}

/* === NAVBAR === */

.navbar-gema{
    background:#ffffff;
    margin:16px 30px;
    border-radius:22px;
    min-height:68px;
    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.logo{
    width:190px;
}

.navbar-gema .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand{
    display:flex;
    align-items:center;
    margin:0;
}

.navbar-collapse{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
}

.navbar-nav{
    align-items:center;
}

.nav-link{
    margin:0 22px;
    color:#06183f;
    font-size:15px;
    font-weight:600;
}

.nav-link.active{
    color:#0066ff;
    border-bottom:4px solid #0066ff;
}

/* WRAPPER */

.auth-wrapper{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 15px;
}

/* CARD */

.auth-card{
    width:100%;
    max-width:430px;
    background:white;
    padding:30px 38px;
    border-radius:24px;
    box-shadow:
    0 20px 60px rgba(0,0,0,0.10);
}

/* LOGO */

.auth-logo{
    width:160px;
    margin-bottom:15px;
}

.auth-card h3{
    font-weight:700;
    color:#071b45;
}

.auth-card p{
    color:#71809b;
    font-size:14px;
}

/* FORM */

label{
    margin-top:15px;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#071b45;
}

.input-box{
    height:46px;
    background:#f5f8ff;
    border-radius:15px;
    display:flex;
    align-items:center;
    padding:0 18px;
    border:1px solid #e3e9f5;
}

.input-box i{
    color:#0066ff;
    font-size:18px;
    margin-right:12px;
}

.input-box input{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    font-size:14px;
}

/* BUTTON */

.btn-auth{
    width:100%;
    height:48px;
    margin-top:30px;
    border:none;
    border-radius:16px;
    background:
    linear-gradient(
        135deg,
        #0066ff,
        #004ee6
    );

    color:white;
    font-weight:600;
    box-shadow:
    0 12px 25px rgba(0,102,255,.3);
}

.btn-auth:hover{
    opacity:.9;
}

/* FOOTER */

.auth-footer{
    margin-top:30px;
    text-align:center;
    color:#71809b;
    font-size:14px;
    line-height:1.8;
}

.auth-footer a{
    color:#0066ff;
    font-weight:600;
    text-decoration:none;
}

.auth-footer small{
    display:block;
    margin-top:18px;
    color:#64748b;
}

/* === AUTH FOOTER BAWAH === */

.footer-auth{
    background:#031126;
    color:white;
    text-align:center;
    padding:35px 20px;
}

.footer-auth h6{
    font-weight:700;
    margin-bottom:10px;
}

.footer-auth p{
    font-size:13px;
    margin-bottom:8px;
    opacity:.9;
}