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

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

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

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:#0B5ED7;

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

}

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

.navbar{

    max-width:1400px;

    margin:auto;

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

}

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

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.logo-circle{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#FFFFFF;

    color:#0B5ED7;

    border:3px solid #D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    transition:.4s;

}

.logo:hover .logo-circle{

    transform:rotate(360deg);

}

.logo-text h2{

    color:#FFFFFF;

    font-size:20px;

    line-height:1;

}

.logo-text p{

    color:#FFD54F;

    font-size:13px;

    margin-top:4px;

}

/* ==========================================
   NAVIGATION LINKS
========================================== */

.nav-links{

    list-style:none;

    display:flex;

    gap:30px;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#FFFFFF;

    font-size:15px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#FFD54F;

    transition:.3s;

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,

.nav-links a.active{

    color:#FFD54F;

}

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

.hamburger{

    display:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:28px;

    height:3px;

    margin:6px 0;

    background:#FFFFFF;

    border-radius:5px;

    transition:.3s;

}

.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 20px;

}

.hamburger{

display:block;

}

.nav-links{

position:fixed;

top:80px;

right:-100%;

width:280px;

height:calc(100vh - 80px);

background:#050505;

display:flex;

flex-direction:column;

padding:40px 30px;

gap:30px;

transition:.4s;

}

.nav-links.active{

right:0;

}

}

/* ==========================================
   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:11px;

}

.nav-links{

top:70px;

width:100%;

height:calc(100vh - 70px);

}

}

@media(max-width:480px){

.logo-circle{

width:42px;

height:42px;

font-size:16px;

}

.logo-text h2{

font-size:14px;

}

.logo-text p{

font-size:10px;

}

}

/* ==========================================
   FORGOT PASSWORD HERO
========================================== */

.forgot-hero{

    width:100%;

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:160px 8% 100px;

    background:
    linear-gradient(
        rgba(5,5,5,.90),
        rgba(5,5,5,.90)
    ),
    radial-gradient(circle at top,#0B5ED7 0%,#050505 70%);

}

.forgot-content{

    max-width:850px;

}

.forgot-content span{

    display:inline-block;

    background:#0B5ED7;

    color:#FFFFFF;

    padding:12px 30px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

    letter-spacing:1px;

}

.forgot-content h1{

    color:#FFFFFF;

    font-size:62px;

    margin-bottom:25px;

    line-height:1.2;

}

.forgot-content p{

    color:#CFCFCF;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

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

@media(max-width:992px){

.forgot-content h1{

font-size:48px;

}

}

@media(max-width:768px){

.forgot-hero{

padding:140px 20px 80px;

min-height:60vh;

}

.forgot-content h1{

font-size:38px;

}

.forgot-content p{

font-size:16px;

}

}

@media(max-width:480px){

.forgot-content h1{

font-size:30px;

}

.forgot-content span{

font-size:12px;

padding:10px 22px;

}

.forgot-content p{

font-size:15px;

}

}
/* ==========================================
   FORGOT FORM
========================================== */

.forgot-section{

    background:#050505;

    padding:100px 8%;

}

.forgot-card{

    max-width:600px;

    margin:auto;

    background:#111111;

    border-radius:20px;

    padding:50px;

    text-align:center;

    border:1px solid #222;

    box-shadow:0 20px 40px rgba(0,0,0,.4);

}

.forgot-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    background:#0B5ED7;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.forgot-icon i{

    color:#fff;

    font-size:34px;

}

.forgot-card h2{

    color:#fff;

    margin-bottom:20px;

    font-size:34px;

}

.forgot-card p{

    color:#BBBBBB;

    line-height:1.8;

    margin-bottom:35px;

}

.input-box{

    text-align:left;

    margin-bottom:25px;

}

.input-box label{

    display:block;

    color:#fff;

    margin-bottom:10px;

    font-weight:500;

}

.input-box input{

    width:100%;

    height:55px;

    border:1px solid #333;

    background:#1A1A1A;

    color:#fff;

    border-radius:10px;

    padding:0 18px;

    outline:none;

    transition:.3s;

}

.input-box input:focus{

    border-color:#0B5ED7;

}

.input-box input::placeholder{

    color:#888;

}

.forgot-btn{

    width:100%;

    height:56px;

    border:none;

    background:#0B5ED7;

    color:#fff;

    font-size:17px;

    font-weight:600;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.forgot-btn i{

    margin-right:10px;

}

.forgot-btn:hover{

    background:#D4AF37;

    color:#050505;

}

.back-login{

    margin-top:30px;

}

.back-login a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

}

.back-login a:hover{

    color:#0B5ED7;

}

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

@media(max-width:768px){

.forgot-section{

padding:70px 20px;

}

.forgot-card{

padding:35px 25px;

}

.forgot-card h2{

font-size:28px;

}

}