/* ==========================================
   RESET
========================================== */

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

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* ==========================================
   HEADER
========================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#0B5ED7;

    box-shadow:0 6px 20px rgba(0,0,0,.25);

    z-index:1000;

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

    max-width:1400px;

    height:80px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 60px;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.logo-circle{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#FFFFFF;

    border:3px solid #D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#0B5ED7;

    font-size:22px;

    font-weight:bold;

    transition:.4s;

}

.logo:hover .logo-circle{

    transform:rotate(360deg);

}

.logo-text h2{

    color:#FFFFFF;

    font-size:20px;

}

.logo-text p{

    color:#F4C542;

    font-size:12px;

}

/* ==========================================
   NAV LINKS
========================================== */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    color:#FFFFFF;

    text-decoration:none;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#D4AF37;

    transition:.35s;

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,

.nav-links a.active{

    color:#D4AF37;

}

/* ==========================================
   HAMBURGER
========================================== */

.hamburger{

    display:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:30px;

    height:3px;

    margin:6px;

    background:#FFFFFF;

    border-radius:10px;

    transition:.35s;

}

.hamburger.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

    .navbar{

        padding:0 25px;

    }

    .nav-links{

        position:fixed;

        top:80px;

        right:-100%;

        width:300px;

        height:calc(100vh - 80px);

        background:#050505;

        display:flex;

        flex-direction:column;

        gap:30px;

        padding:40px 30px;

        transition:.4s;

    }

    .nav-links.active{

        right:0;

    }

    .hamburger{

        display:block;

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .navbar{

        height:70px;

        padding:0 18px;

    }

    .logo-circle{

        width:45px;

        height:45px;

        font-size:18px;

    }

    .logo-text h2{

        font-size:16px;

    }

    .logo-text p{

        font-size:10px;

    }

    .nav-links{

        top:70px;

        width:100%;

        height:calc(100vh - 70px);

    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:430px){

    .logo{

        gap:8px;

    }

    .logo-circle{

        width:40px;

        height:40px;

        font-size:16px;

    }

    .logo-text h2{

        font-size:14px;

    }

    .logo-text p{

        font-size:9px;

    }

}

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

.register-hero{

    position:relative;

    min-height:65vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:140px 8% 80px;

    background:
    linear-gradient(
        rgba(0,0,0,.82),
        rgba(0,0,0,.82)
    ),
    url("../images/register/register-banner.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.register-overlay{

    position:absolute;

    inset:0;

}

.register-content{

    position:relative;

    z-index:2;

    max-width:850px;

}

.register-content span{

    display:inline-block;

    padding:12px 28px;

    background:#0B5ED7;

    color:#FFFFFF;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.register-content h1{

    color:#FFFFFF;

    font-size:60px;

    margin-bottom:25px;

    line-height:1.2;

}

.register-content p{

    color:#DDDDDD;

    font-size:18px;

    line-height:1.9;

}

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

@media(max-width:768px){

.register-hero{

padding:120px 20px 70px;

min-height:55vh;

}

.register-content h1{

font-size:38px;

}

.register-content p{

font-size:16px;

}

}

@media(max-width:480px){

.register-content h1{

font-size:30px;

}

.register-content span{

font-size:12px;

padding:10px 18px;

}

}

/* ==========================================
   REGISTRATION SECTION
========================================== */

.register-section{

    background:#050505;

    padding:100px 8%;

}

.register-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    align-items:start;

}

/* ==========================================
   LEFT CONTENT
========================================== */

.register-info{

    padding-top:30px;

}

.register-info span{

    display:inline-block;

    background:#0B5ED7;

    color:#FFFFFF;

    padding:10px 25px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.register-info h2{

    color:#FFFFFF;

    font-size:45px;

    line-height:1.3;

    margin-bottom:25px;

}

.register-info p{

    color:#CCCCCC;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

.register-info ul{

    list-style:none;

}

.register-info ul li{

    color:#DDDDDD;

    margin-bottom:20px;

    display:flex;

    align-items:center;

    gap:15px;

    font-size:16px;

}

.register-info ul li i{

    color:#D4AF37;

    font-size:20px;

}

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

.register-form-card{

    background:#111111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.register-form-card h2{

    color:#FFFFFF;

    text-align:center;

    margin-bottom:35px;

    font-size:32px;

}

/* ==========================================
   PROFILE IMAGE
========================================== */

.profile-upload{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:35px;

    position:relative;

}

.profile-upload img{

    width:140px;

    height:140px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #0B5ED7;

    background:#222222;

}

.profile-upload label{

    position:absolute;

    bottom:5px;

    right:calc(50% - 70px);

    width:42px;

    height:42px;

    border-radius:50%;

    background:#D4AF37;

    color:#050505;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    transition:.35s;

}

.profile-upload label:hover{

    background:#0B5ED7;

    color:#FFFFFF;

}

.profile-upload input{

    display:none;

}

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

.form-grid{

    display:grid;

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

    gap:20px;

    margin-bottom:20px;

}

/* ==========================================
   INPUT BOX
========================================== */

.input-box{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.input-box label{

    color:#FFFFFF;

    margin-bottom:10px;

    font-size:15px;

    font-weight:500;

}

.input-box input,

.input-box select{

    width:100%;

    height:56px;

    background:#1A1A1A;

    border:1px solid #333333;

    border-radius:10px;

    padding:0 18px;

    color:#FFFFFF;

    font-size:15px;

    outline:none;

    transition:.35s;

}

.input-box input::placeholder{

    color:#888888;

}

.input-box input:focus,

.input-box select:focus{

    border-color:#0B5ED7;

    box-shadow:0 0 10px rgba(11,94,215,.25);

}

/* ==========================================
   FULL WIDTH INPUTS
========================================== */

.input-box input[type="email"],

.input-box input[type="tel"],

.input-box input[type="text"],

.input-box input[type="date"],

.input-box input[type="number"],

.input-box input[type="password"],

.input-box select{

    width:100%;

}


/* ==========================================
   PASSWORD
========================================== */

.password-box{

    position:relative;

}

.password-box input{

    padding-right:55px;

}

.toggle-password,

.toggle-confirm{

    position:absolute;

    right:18px;

    top:50px;

    color:#AAAAAA;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

.toggle-password:hover,

.toggle-confirm:hover{

    color:#0B5ED7;

}

/* ==========================================
   PASSWORD STRENGTH
========================================== */

.strength{

    width:100%;

    height:8px;

    background:#2A2A2A;

    border-radius:20px;

    margin:-5px 0 25px;

    overflow:hidden;

}

.strength-bar{

    width:0;

    height:100%;

    background:#ff3b30;

    border-radius:20px;

    transition:.4s;

}

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

.terms{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin:25px 0;

}

.terms input{

    width:18px;

    height:18px;

    accent-color:#0B5ED7;

    cursor:pointer;

    margin-top:3px;

}

.terms label{

    color:#CCCCCC;

    font-size:15px;

    line-height:1.7;

}

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

.register-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:10px;

    background:#0B5ED7;

    color:#FFFFFF;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.register-btn:hover{

    background:#D4AF37;

    color:#050505;

    transform:translateY(-3px);

}

/* ==========================================
   LOGIN LINK
========================================== */

.login-link{

    text-align:center;

    margin-top:25px;

    color:#BBBBBB;

    font-size:15px;

}

.login-link a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.login-link a:hover{

    color:#0B5ED7;

}

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

@media(max-width:992px){

.register-container{

grid-template-columns:1fr;

gap:50px;

}

.register-info{

text-align:center;

padding-top:0;

}

.register-info ul{

display:inline-block;

text-align:left;

}

}

@media(max-width:768px){

.register-section{

padding:80px 20px;

}

.register-form-card{

padding:30px 20px;

}

.form-grid{

grid-template-columns:1fr;

}

.profile-upload img{

width:120px;

height:120px;

}

.profile-upload label{

right:calc(50% - 60px);

}

.register-form-card h2{

font-size:28px;

}

.register-info h2{

font-size:34px;

}

.register-info p{

font-size:15px;

}

}

@media(max-width:480px){

.register-info h2{

font-size:28px;

}

.register-info span{

font-size:12px;

padding:8px 18px;

}

.register-btn{

font-size:16px;

height:54px;

}

.login-link{

font-size:14px;

}

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#050505;

    padding:80px 8% 25px;

    border-top:2px solid #0B5ED7;

}

.footer-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:45px;

}

.footer-box h3{

    color:#D4AF37;

    margin-bottom:20px;

    font-size:22px;

}

.footer-box p{

    color:#CCCCCC;

    line-height:1.9;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:14px;

}

.footer-box ul li a{

    color:#CCCCCC;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

/* Logo */

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.footer-logo-circle{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#FFFFFF;

    border:3px solid #D4AF37;

    color:#0B5ED7;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:22px;

}

.footer-logo h2{

    color:#FFFFFF;

}

.footer-logo p{

    color:#D4AF37;

}

/* Contact */

.footer-box i{

    color:#0B5ED7;

    margin-right:10px;

}

/* Social */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#111111;

    color:#FFFFFF;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#0B5ED7;

    transform:translateY(-5px);

}

/* Bottom */

.footer hr{

    border:none;

    height:1px;

    background:#222;

    margin:50px 0 25px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    color:#AAAAAA;

}

/* Responsive */

@media(max-width:992px){

.footer-container{

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

}

}

@media(max-width:768px){

.footer{

padding:70px 20px 25px;

}

.footer-container{

grid-template-columns:1fr;

}

.footer-box{

text-align:center;

}

.footer-logo{

justify-content:center;

}

.footer-social{

justify-content:center;

}

}