/* Login Page Styles */
.login-section {
  background-color: #ffffff;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.login-container {
  width: 407px;
  max-width: 100%;
  padding: 0 16px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.form-label {
  font-family: 'GE SS Two', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #393d46;
  text-align: start;
}

.form-input {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  padding: 13px 26px;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #393d46;
  text-align: start;
  box-sizing: border-box;
  outline: none;
  transition: background-color 0.3s ease;
}

.form-input::placeholder {
  color: #cececb;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-weight: 300;
}

.form-input:focus {
  background-color: #eeeeee;
}

.btn-login {
  width: 100%;
  background-color: #c09c3a;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  font-family: 'GE SS Two', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.btn-login:hover {
  background-color: #a08532;
}

.btn-login:active {
  transform: translateY(1px);
}

/* Responsive styles for login page */
@media (max-width: 639px) {
  .login-section {
    padding: 60px 0;
  }
  
  .login-container {
    width: 100%;
    max-width: 407px;
  }
  
  .form-input {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .form-label {
    font-size: 16px;
  }
  
  .btn-login {
    font-size: 16px;
    padding: 10px 12px;
  }
}

