/* css/login.css */
.login-page {
  position: relative;
  min-height: 100vh;
  background-color: #C1D2AD; /* Light green matching the screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* Space for navbar */
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.login-curve-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 250px;
  background-color: #FFFFFF;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  z-index: 1;
}

.login-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px; /* Slightly wider for the form */
  text-align: center;
  margin-bottom: 50px;
}

.login-title {
  font-family: 'Inter', sans-serif;
  color: #4A5642; /* Dark green/grey */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.login-card {
  background: white;
  border-radius: 6px;
  padding: 40px 50px 60px 50px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.login-greeting {
  color: #C87A5E; /* Terracotta style */
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.login-subtitle {
  color: #4A4A4A;
  font-size: 15px;
  margin-bottom: 35px;
  line-height: 1.4;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #92A97A; /* Greenish border */
  border-radius: 4px;
  padding: 12px 15px;
  background: white;
  transition: border-color 0.3s;
}

.input-group:focus-within {
  border-color: #728A5A;
}

.input-group .flag-icon {
  font-size: 18px;
  margin-right: 12px;
}

.input-group .phone-icon {
  color: #92A97A;
  margin-right: 12px;
}

.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: #333;
  font-family: 'Inter', sans-serif;
  background: transparent;
}

.country-input {
  color: #666 !important;
}

.submit-btn {
  position: absolute;
  bottom: -32px; /* Half of height to overlap */
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background-color: #AAAAAA; /* Grey like screenshot */
  border: 6px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
  outline: none;
}

.submit-btn:hover {
  background-color: #999999;
}
