/* =========================================================
   791 Mother App - Clean Sign-In Screen
   ========================================================= */

.mother-login-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  background-color: #FFFFFF;
  z-index: 500;
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-width: none;
}

.mother-login-container::-webkit-scrollbar {
  display: none;
}

.mother-login-container.hidden {
  display: none !important;
}

/* Header */
.mother-login-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.mother-app-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-primary-teal);
  margin: 0;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

/* Form Container */
.mother-login-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.mother-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Prominent Field Labels */
.mother-form-label {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.2px;
}

.mother-form-input {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid #CBD5E1;
  background-color: #FFFFFF;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 500;
  color: #0F172A;
  outline: none;
  font-family: var(--font-family);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.mother-form-input:focus {
  border-color: var(--color-primary-teal);
  box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.15);
}

/* Sign In Action Button */
.mother-submit-btn {
  width: 100%;
  height: 54px;
  border-radius: 12px;
  background-color: var(--color-primary-teal);
  color: #FFFFFF !important;
  border: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.15s ease, transform 0.1s ease;
  margin-top: 10px;
}

.mother-submit-btn:hover {
  opacity: 0.94;
}

.mother-submit-btn:active {
  transform: scale(0.98);
}
