
:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --primary-color: #0B2D4F;
  --secondary-color: #F57C00;
  --accent: #1E88E5;
  --light-bg: #F4F6F9;
  --dark-navy: #071c33;
  --text-gray: #6c757d;
}
.body{
  margin: 0;
}
/* remove scroll */
.auth-body{
  margin:0;
  padding:0;
  overflow:hidden;
  font-family: 'Inter', sans-serif;
}

/* FULL SCREEN */
.auth-wrapper{
  width:100vw;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0B2D4F,#071c33);
}

/* MAIN CARD */
.auth-container{
  width:96%;
  height:94vh;
  background:#fff;
  border-radius:30px;
  display:flex;
  overflow:hidden;
  align-items:center;
  justify-content:center;
  box-shadow:0 40px 120px rgba(0,0,0,.35);
}

/* LEFT SIDE */
.auth-left{
  flex:1;
  padding:70px;
  background:linear-gradient(180deg,#ffffff,#f4f7fb);
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align: center;
}

.logo img{
  text-align: center;
  justify-content: center;
 width: 150px;
 margin-top: 20px;
 margin-bottom: 10px;
}

.auth-left h2{
  color:#0B2D4F;
  font-weight:700;
}

.auth-left p{
  color:#777;
  margin-bottom:25px;
}

/* INPUT */
.auth-left input{
  width:100%;
  padding:16px;
  margin:10px 0;
  border-radius:30px;
  border:none;
  background:#f1f1f1;
  font-size:15px;
}

.auth-left input:focus{
  outline:none;
  border:2px solid #F57C00;
}

/* BUTTON */
.submit-btn{
  margin-top:15px;
  padding:15px 155px;
  justify-content: center;
  border:2px solid var(--secondary-color);
  border-radius:30px;
  background:transparent;
  color:var(--primary-color);
  font-size:16px;
  font-weight:600;
  transition: .5s;
}

.submit-btn:hover{
  transform:translateY(-5px);
  background:linear-gradient(90deg,#F57C00,#ff9800);
  color: var(--primary-color);
  border: none;
}

/* SOCIAL */
.social{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.social button{
  flex:1;
  padding:10px 12px;
  border-radius:25px;
  border:1.5px solid #000;
  background:transparent;
  transition: .4s;
}
.social i{
  margin-right: 10px;
  font-size: 20px;
}
.social button:hover{
  background:var(--primary-color);
  transform: translateY(-5px);
  .social-icon{
    color: var(--secondary-color);
  }
}

.bottom-text{
  text-align: center;
  margin-top:20px;
  font-size:16px;
  color:#777;
}
.bottom-text a{
  text-decoration: none;
  transition: .5s;
}
.bottom-text a:hover{
  color: var(--secondary-color);
}
/* RIGHT IMAGE */
.auth-right{
  flex:1.2;
  height:100%;
}

.auth-right img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* LAPTOP */
@media(max-width:1200px){
  .auth-left{
    padding:40px;
  }
}

/* MOBILE */
@media(max-width:900px){
  .auth-container{
    flex-direction:column;
    height:100vh;
    border-radius:0;
  }

  .auth-right{
    display:none;
  }

  .auth-left{
    height:100vh;
    justify-content:center;
  }
 .submit-btn{
  padding: 15px 65px;
 }
 .auth-wrapper{
  background: white !important;
 }
}

@media (max-width:380px) {
  .submit-btn{
    padding: 15px 65px;
  }
  .social i{
    font-size: 15px;
  }
  .social button{
    padding: 8px 8px;
  }
  .bottom-text{
    font-size: 15px;
  }
}
@media (max-width:320px) {
  .submit-btn{
    font-size: 13.4px;
  }
}
/* MOBILE → enable scroll */
@media (max-width:900px){

  body{
    overflow:auto !important;
  }

  .auth-wrapper{
    height:auto;
    min-height:100vh;
  }

  .auth-container{
    height:auto;
    min-height:100vh;
  }

  .auth-left{
    height:auto;
    padding:40px 25px;
  }

}
