* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f4f5f7;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.auth-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  width: 100%;
  max-width: 980px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-wrap: wrap;
}

.auth-side {
  background: linear-gradient(135deg,  rgb(0, 0, 0), #410A70);
  color: white;
  flex: 1;
  min-width: 320px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-side-content {
  text-align: left;
}

.auth-side-content h1 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 16px;
}

.auth-side-content h1 span {
  text-decoration: underline;
}

.auth-side-content p {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.auth-side-content img {
  max-width: 100%;
  height: auto;
  max-height: 250px;
}

.auth-form-section {
  flex: 1;
  min-width: 320px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-form {
  width: 100%;
  max-width: 320px;
}

.auth-logo {
  font-size: 20px;
  margin-bottom: 20px;
  color: #111827;
}

.auth-form h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.auth-subtext {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.auth-form form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
}

.auth-form button {
  width: 100%;
  padding: 12px;
  background-color: #410A70;
  border: none;
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.forgot-pass {
  text-align: right;
  margin-bottom: 20px;
}

.forgot-pass a {
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
}

.auth-link-text {
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
  color: #6b7280;
}

.auth-link-text a {
  color: black;
  text-decoration: none;
  font-weight: bolder;
}


.form-main-div{
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    width: 350px;
}
.signup_main{
    justify-items: center;
    padding-bottom: 400px;

}


h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    background-color: #00ABED;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* button:hover {
    background-color: #2129af;
} */

p {
    text-align: center;
    margin-top: 15px;
}

span.toggle {
    color: #00ABED;
    cursor: pointer;
    font-weight: bold;
}

.hidden {
    display: none;
}

#forget_pswd{
    color: black !important;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-card {
    flex-direction: column;
    border-radius: 16px;
  }

  .auth-side,
  .auth-form-section {
    padding: 30px 20px;
  }

  .auth-side-content h1 {
    font-size: 22px;
  }

  .auth-form {
    max-width: 100%;
  }
}
