@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* =========================================================
   ROOT COLORS
========================================================= */
:root{
  --navy: #003893;
  --navy-dark: #002766;
  --yellow: #f7c600;
  --yellow-hover: #ffe066;

  --light-blue: #e6efff;
  --light-yellow: #fff8cc;

  --border: #cbd5e1;
  --text: #1e293b;
  --muted: #64748b;

  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0,0,0,0.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Poppins", sans-serif;
}

body{
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  min-height:100vh;
  height:auto;
  display:flex;
  justify-content:center;
  align-items:center;
}

body.auth-page{
  min-height:100vh;
  height:auto;
}



.left{
  width:45%;
  background:#0f172a;
  color:white;
  padding:60px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.left h1{
  font-size:42px;
  margin-bottom:20px;
}

@media (max-width: 768px) {


  .left,
  .right {
    width: 100%;
    padding: 32px 24px;
  }

  .left h1 {
    font-size: 28px;
  }

  .tabs {
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 90px;
  }
}

.left p{
  font-size:18px;
  line-height:1.6;
  color:#cbd5e1;
}

.right{
  width:55%;
  padding:40px;
}

.tabs{
  display:flex;
  justify-content:space-between;
  margin-bottom:30px;
}

.tab-btn{
  width:32%;
  padding:12px;
  border:none;
  background:#e2e8f0;
  cursor:pointer;
  border-radius:10px;
  font-weight:bold;
  transition:0.3s;
}

.tab-btn.active{
  background:#2563eb;
  color:white;
}

.form-container{
  display:none;
}

.form-container.active{
  display:block;
}

.hidden-section{
  display:none;
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid #ddd;
}

h2{
  margin-bottom:20px;
  color:#0f172a;
}

.input-group{
  margin-bottom:18px;
}

.input-group label{
  display:block;
  margin-bottom:8px;
  font-weight:bold;
}

.input-group input{
  width:100%;
  padding:12px;
  border:1px solid #cbd5e1;
  border-radius:8px;
  outline:none;
  transition:0.3s;
}

.input-group input:focus{
  border-color:#2563eb;
}

.login-btn{
  width:100%;
  padding:14px;
  background:#2563eb;
  border:none;
  color:white;
  font-size:16px;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.login-btn:hover{
  background:#1d4ed8;
}

.links{
  margin-top:15px;
  display:flex;
  justify-content:space-between;
}

.links a{
  text-decoration:none;
  color:#2563eb;
  font-size:14px;
}

.links a:hover{
  text-decoration:underline;
}

@media(max-width:900px){



  .left,
  .right{
    width:100%;
  }

  .tabs{
    flex-direction:column;
    gap:10px;
  }

  .tab-btn{
    width:100%;
  }

}