/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


/* BACKGROUND */
body {
  /* background: linear-gradient(135deg, #f7fafc 0%, #e8f4f8 100%);
  background-image: url("/images/bgbanner.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN WRAPPER EXACT LIKE SCREENSHOT */
.main-wrapper {
  width: 100%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 5px; */
  position: relative;
  height: 100vh;
}

/* OUTER BORDER */
.main-wrapper::before {
  content: "";
  position: absolute;
  inset: 50px;
  border: 2.5px solid #1e558858;
  pointer-events: none;
  border-radius: 3px;
}

/* INNER BORDER */
.main-wrapper::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 2.5px solid #3af8005f;
  pointer-events: none;
  border-radius: 3px;
}

/* LEFT SIDE TEXT */
.tagline-section {
  width: 45%;
}

.tagline {
  font-size: 50px;
  font-weight: 100;
  line-height: 1.3;
  color: #275880;
}

.tagline-green {
  color: #3fb248;
  font-weight: 600;
}

/* RIGHT SIDE LOGIN BOX */
.container {
  width: 400px;
  background: #fff;
  padding: 15px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: fit-content;
  max-height: 80vh;
  overflow-y: auto;
}

/* LOGO */
.logo {
  width: 85px;
  display: block;
  margin: 0 auto 10px;
}

/* HEADINGS */
h2 {
  text-align: center;
  color: #1e5588;
  font-size: 19px;
  margin-bottom: 18px;
}

/* FORMS SYSTEM */
form {
  display: none;
}

form.active {
  display: block;
}

/* LABELS */
label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #515151d7;
}

/* INPUTS */
.input-group {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  background: #ffffff;
}

.input-group i {
  color: #1b4f7a;
  margin-right: 10px;
  font-size: 15px;
  flex-shrink: 0;
}

.input-group input {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 6px;
  font-size: 14px;
}

/* FORGOT PASSWORD LINK */
.forgot-password-link {
  text-align: right;
  margin-bottom: 18px;
}

.forgot-password-link a {
  color: #1e5588;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

/* PASSWORD TOGGLE ICON */
.toggle-password {
  color: #1b4f7a;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s;
  flex-shrink: 0;
  margin-left: 8px;
}

.toggle-password:hover {
  color: #3fb248;
}

/* BUTTON */
.btn {
  width: 100%;
  padding: 12px;
  background: #1b4f7a;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #3fb248;
}

/* SWITCH LINKS BELOW BUTTON */
.switch {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.switch a {
  color: #1e5588;
  font-weight: 600;
  text-decoration: none;
}

/* REGISTER FORM GRID */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
}

.reg-inu {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  margin-bottom: 0;
  background: #ffffff;
  font-size: 14px;
  outline: none;
  color: #333;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.reg-inu:focus {
  border-color: #1b4f7a;
  box-shadow: 0 0 0 3px rgba(27, 79, 122, 0.1);
}

.reg-inu::placeholder {
  color: #999;
}

.terms-label {
  margin: 20px 0;
}

/* MOBILE */
@media (max-width: 960px) {
  .main-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .main-wrapper::before,
  .main-wrapper::after {
    display: none !important;
  }

  .tagline-section {
    display: none;
  }

  .container {
    width: 100%;
    max-width: 450px;
    padding: 30px 25px;
  }
}
