/* Reset default styles */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
} */

/* Make sure it fills the viewport and centers content */
.body {
 background: #f5f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

/* Outer wrapper */
.login-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
}

/* Main login card */
.login-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

/* Left side - logo and text */
.login-left {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-right: 1px solid #eee;
}

.logo {
  width: 180px;
  max-width: 70%;
  height: auto;
  margin-bottom: 15px;
}

.login-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c2b50;
}

/* Right side - form */
.login-right {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
  color: #1c2b50;
  text-transform: uppercase;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 13px;
  margin-bottom: 5px;
  color: #555;
}

select{
    background-color: #fff;
}

input,select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  width: 100%;
  height: 45px!important;
}

input:focus {
  border-color: #0d6efd;
  outline: none;
}
select:focus{
   border-color: #0d6efd;
  outline: none;
}

/* Button */
button {
  background: #0d6efd;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0b5ed7;
}

/* Options row */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 13px;
}

.options a {
  text-decoration: none;
  color: #0d6efd;
}

.options a:hover {
  text-decoration: underline;
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .login-card {
    max-width: 700px;
  }

  .login-left, .login-right {
    padding: 30px;
  }

  .logo {
    width: 150px;
  }

  .login-left h2 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .body {
    align-items: flex-start;
    height: auto;
  }

  .login-card {
    flex-direction: column;
    width: 100%;
    max-width: 500px;
  }

  .login-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .login-right {
    padding: 25px;
  }

  /* button {
    width: 100%;
  } */

  .options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .body {
    padding: 10px;
  }

  .login-left h2 {
    font-size: 20px;
  }

  .login-right h3 {
    font-size: 18px;
    text-align: center;
  }

  input, button {
    font-size: 13px;
  }
}

