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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:url("../img/BG MAIN.8fcfe89adcd7.png") center/cover no-repeat fixed;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    position:relative;
}

/* ================= NAVBAR ================= */
.navbar{
    width:100%;
    height:75px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    border-radius:0 0 18px 18px;
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

.nav-left img{
    height:42px;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:26px;
}

.nav-right a{
    text-decoration:none;
    color:#1f3d66;
    font-size:13px;
    font-weight:600;
}

/* ACTIVE BUTTON */
.register-btn{
    background:#e5e7eb;
    padding:10px 18px;
    border-radius:6px;
    border:1px solid #cbd5e1;
    cursor:default;
}

/* LOGIN BUTTON */
.login-btn-nav{
    border:1px solid #1f3d66;

    padding:11px 18px;

    border-radius:5px;

    transition:0.3s ease;
}

.login-btn-nav:hover{
    background:#1f3d66;
    color:white;
}
/* =========================
   LANGUAGE DROPDOWN
========================= */

.language-dropdown{
    position:relative;
    z-index:9999;
}

.selected-language{
    display:flex;
    align-items:center;
    gap:7px;

    color:#1f3d66;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s ease;

    user-select:none;
}

.selected-language:hover{
    opacity:0.75;
}

/* MENU */

.language-menu{
    position:absolute;

    top:42px;
    left:-12px;

    background:white;

    width:150px;

    border-radius:12px;

    padding:8px 0;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.25s ease;

    overflow:hidden;
}

/* ACTIVE */

.language-dropdown.active .language-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* OPTION */

.language-option{
    padding:12px 18px;

    color:#1f3d66;

    font-size:14px;
    font-weight:500;

    cursor:pointer;

    transition:0.25s ease;
}

.language-option:hover{
    background:#f1f5f9;
}

/* ================= NAVBAR ================= */
.navbar{
    width:100%;
    height:75px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    border-radius:0 0 18px 18px;
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

/* ================= MAIN ================= */
.register-section{
    max-width:700px;
    margin:90px auto;
    padding:0 20px;
}

/* ================= TITLE ================= */
.register-section h1{
    font-size:36px;
    color:white;
    font-weight:700;
    margin-bottom:10px;
}

.card-note{
    font-size:13px;
    color:rgba(255,255,255,0.8);
    margin-bottom:30px;
    line-height:1.6;
}

/* ================= FORM ================= */
.form-group{
    margin-bottom:20px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom: -10px;
}

/* LABEL */
.form-label{
    font-size:11px;
    color:rgba(255,255,255,0.7);
    margin-bottom:6px;
    display:block;
    letter-spacing:0.5px;
}

/* INPUT */
.form-input{
    width:100%;
    height:48px;
    border-radius:8px;
    border:none;
    padding:0 14px;
    background:#e5e7eb;
    font-size:14px;
    outline:none;
    transition:0.2s;
}

/* FOCUS */
.form-input:focus{
    background:#ffffff;
}

/* PASSWORD */
.password-wrapper{
    position:relative;
}

.toggle-pw{
    position:absolute;
    top:50%;
    right:14px;
    transform:translateY(-50%);
    background:none;
    border:none;
    cursor:pointer;
    color:#64748b;
}

/* PASSWORD HINTS */
.pw-hints{
    font-size:11px;
    color:rgba(255,255,255,0.6);
    margin-top:6px;
    line-height:1.6;
}

/* ================= BUTTON ================= */
.submit-btn{
    font-family: 'poppins', sans-serif;
    width:220px;
    height:45px;
    background:transparent;
    border:1.5px solid white;
    color:white;
    border-radius:6px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
    transition:0.3s;
}

/* HOVER */
.submit-btn:hover{
    background:white;
    color:#1f3d66;
}

/* ================= LOGIN LINK ================= */
.login-link{
    margin-top:20px;
    font-size:13px;
    color:rgba(255,255,255,0.7);
}

.login-link a{
    color:white;
    font-weight:600;
    text-decoration:underline;
}
.login-link a:hover{
    color:#91a0b7;
    transition:0.2s;
}

/* ================= FOOTER ================= */
.footer{
    background:#f5f5f5;
    padding:40px 60px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer h4{
    font-size:12px;
    margin-bottom:12px;
}

.footer-center{
    text-align:center;
}

.footer-center img{
    height:42px;
    margin-bottom:15px;
}

.footer-links{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-bottom:10px;
}

.footer-links a{
    text-decoration:none;
    color:#111827;
    font-size:12px;
    font-weight:600;
}

.footer-center p{
    font-size:12px;
    color:#6b7280;
}

.social-icons,
.contact-icons{
    display:flex;
    gap:14px;
}

.social-icons img,
.contact-icons img{
    width:22px;
    cursor:pointer;
    transition:0.3s;
}

.social-icons img:hover,
.contact-icons img:hover{
    transform:translateY(-3px);
}