/* Login Page Styles */

.login-image-section {
  flex: 1;
  min-height: 100vh;
  overflow: hidden;
  display: none;
}

.login-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-form-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #fff;
}

.login-form-container {
  width: 100%;
  max-width: 400px;
}

.logo-section {
  text-align: left;
  margin-bottom: 40px;
}

.logo-section .mud-typography {
  line-height: 1.2;
}

.welcome-section {
  margin-bottom: 30px;
}

.title-underline {
  width: 120px;
  height: 3px;
  background-color: #e31837;
  margin-top: 4px;
}

.login-form {
  margin-bottom: 30px;
}

.form-field {
  margin-bottom: 20px;
}

.field-label {
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
}

.login-input {
  width: 100%;
}

.login-input .mud-input-outlined-border {
  border-color: #ddd;
  border-radius: 4px;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  margin-bottom: 30px;
}

.login-button {
  background-color: #e31837 !important;
  color: white !important;
  text-transform: none !important;
  padding: 10px 30px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
}

.login-button:hover {
  background-color: #c41530 !important;
}

.external-login-section {
  margin-bottom: 20px;
  margin-top: 20px;
}

.external-login-button {
  width: 100%;
  margin-bottom: 12px;
  justify-content: flex-start !important;
  text-transform: none !important;
  border: 1px solid #ddd !important;
  color: #333 !important;
  padding: 12px 16px !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
  background-color: white !important;
}

.external-login-button:hover {
  background-color: #f5f5f5 !important;
  border-color: #bbb !important;
}

.forgot-password-section {
  text-align: center;
  margin-top: 20px;
}

.forgot-link {
  color: #e31837 !important;
}

.forgot-link:hover {
  color: #c41530 !important;
}

@media (min-width: 960px) {
  .login-image-section {
    display: block;
  }
}
