.login-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.login-form {
  width: 100%;
  max-width: 380px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-icon {
  font-size: 72px;
  color: #1a237e;
}

.login-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a237e;
  margin: 12px 0 32px;
}

.form-field {
  width: 100%;
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
  font-weight: 500;
}

.form-field .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-field .input-wrapper .field-icon {
  position: absolute;
  left: 14px;
  color: #999;
  font-size: 20px;
}

.form-field input {
  width: 100%;
  padding: 14px 14px 14px 46px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  background: white;
}

.form-field input:focus {
  border-color: #1a237e;
}

.form-field .toggle-password {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 20px;
  padding: 8px;
}

.form-field .error-text {
  color: #c62828;
  font-size: 12px;
  margin-top: 4px;
}

.login-error {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 14px;
  background: #fdecea;
  border: 1px solid #f5c6cb;
  border-radius: 10px;
  color: #c62828;
  font-size: 14px;
  box-sizing: border-box;
}

.login-error .material-icons {
  font-size: 20px;
  flex-shrink: 0;
}

.forgot-password-row {
  width: 100%;
  text-align: right;
  margin-bottom: 8px;
}

.forgot-password-row button {
  background: none;
  border: none;
  color: #1a237e;
  cursor: pointer;
  font-size: 14px;
  padding: 4px 0;
}

.signup-row {
  width: 100%;
  text-align: right;
  margin-bottom: 16px;
}

.signup-row button {
  background: none;
  border: none;
  color: #1a237e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
}

.reset-description {
  width: 100%;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  text-align: center;
}

.reset-message {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 10px;
  color: #2e7d32;
  font-size: 14px;
  box-sizing: border-box;
}

.reset-message .material-icons {
  font-size: 20px;
  flex-shrink: 0;
}

.back-to-login-row {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.back-to-login-row button {
  background: none;
  border: none;
  color: #1a237e;
  cursor: pointer;
  font-size: 14px;
  padding: 8px;
}
