/* 
  Full screen split layout with a diagonal background.
  We achieve this by setting a base background color, and an angled background gradient.
*/

.login-split-container {
  display: flex;
  min-height: 100vh;
  /* White background for the form side */
  background: #0c561cff;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* RIGHT SIDE - IMAGE (Previously left-bg) */
.login-left-bg {
  flex: 1;
  position: relative;
  display: none; /* Hidden on mobile */
  background: url('../../../../admin/assets/login-bg.jpg') center/cover no-repeat;
  order: 2; /* Move it to the right */
}

@media (min-width: 900px) {
  .login-left-bg {
    display: block;
  }
}

/* RIGHT SIDE - FORM */
.login-right-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.login-form-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 40px 30px;
  text-align: center;
}

.login-heading {
  font-size: 26px;
  font-weight: 800;
  color: #FFD700; /* Golden yellow */
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.new-login-form .form-group {
  margin-bottom: 20px;
}

.pill-input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  background-color: #e8e8e8;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.pill-input::placeholder {
  color: #888;
  font-weight: 500;
}

.pill-input:focus {
  background-color: #e0e0e0;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.forgot-password {
  text-align: right;
  margin-bottom: 24px;
}

.forgot-password a {
  color: #7db83d; /* Light green accent matching the button */
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #5c8c2b;
  text-decoration: underline;
}

.btn-pill-green {
  width: 150px;
  padding: 14px 0;
  border-radius: 50px;
  border: none;
  background-color: #88c74a; /* Vibrant green */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(136, 199, 74, 0.4);
  transition: all 0.3s ease;
}

.btn-pill-green:hover {
  background-color: #7ab342;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(136, 199, 74, 0.5);
}

.divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.divider-line {
  height: 1px;
  background-color: #d0d0d0;
  flex: 1;
}

.divider-text {
  padding: 0 16px;
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.social-login-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
  border-radius: 50px;
  border: 1px solid #d0d0d0;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-social:hover {
  background-color: #f5f5f5;
}

.social-icon {
  font-size: 18px;
}

.facebook-icon {
  color: #1877f2;
}

.signup-prompt {
  font-size: 14px;
  color: #FFD700; /* Golden yellow */
  font-weight: 500;
}

.signup-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.signup-link:hover {
  text-decoration: underline;
}
