/* ==========================================================================
   LOGIN BOX CONTAINER
   ========================================================================= */
.login-container
{
  margin: 40px auto 0 auto;
  padding: 30px;
  max-width: 480px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.login-container h1
{
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  color: #2d3748;
}

/* ==========================================================================
   FORM COMPONENT LAYOUTS
   ========================================================================= */
.form-group.row-padding
{
  margin-bottom: 20px;
}

.field-row
{
  display: flex;
  align-items: center;
}

.field-row label
{
  width: 110px;
  font-weight: bold;
  color: #4a5568;
  flex-shrink: 0;
}

/* Explicit width containment to match Name constraints without stretching */
.input-login-text
{
  width: 300px;
  padding: 8px 10px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  font-size: 14px;
}

.password-wrapper
{
  display: flex;
  align-items: center;
}

/* ==========================================================================
   INTERACTIVE FEEDBACK UTILITIES
   ========================================================================= */
.password-eye
{
  cursor: pointer;
  margin-left: 8px;
  font-size: 18px;
  user-select: none;
}

.feedback-row
{
  margin-left: 110px;
  max-width: 322px;
}

.caps-warning
{
  color: #e53e3e;
  font-size: 13px;
  margin-top: 6px;
  display: none;
  font-weight: bold;
}

.strength-meter
{
  height: 6px;
  border-radius: 4px;
  margin-top: 8px;
  background-color: #edf2f7;
  overflow: hidden;
}

.strength-meter-fill
{
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* ==========================================================================
   CHECKBOX & BUTTON SELECTIONS
   ========================================================================= */
.checkbox-container
{
  display: flex;
  align-items: center;
  margin-left: 110px;
  gap: 8px;
}

.checkbox-container label
{
  font-weight: normal;
  color: #4a5568;
  cursor: pointer;
}

.submit-container
{
  margin-top: 24px;
  margin-left: 110px;
}

.btn-submit
{
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  background-color: #3182ce;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.btn-submit:hover
{
  background-color: #2b6cb0;
}

.forgot-password-link
{
  margin-top: 20px;
  margin-left: 110px;
}

.forgot-password-link a
{
  color: #4974a5;
  text-decoration: none;
  font-size: 13px;
}

.forgot-password-link a:hover
{
  text-decoration: underline;
}
