/* === Container === */
.change-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9ab9f5;
  min-height: 100vh;
  padding: 2rem;
}

/* === Card Styling === */
.change-password-card {
  background: #051129;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.change-password-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* === Logo & Header === */
.card-header {
  margin-bottom: 1.5rem;
}

.card-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
}

.card-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
}

/* === Form Styling === */
.password-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.4rem;
}

.form-input {
  padding: 0.6rem 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #111827;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #2563eb;
}

/* === Error Styling === */
.form-error {
  font-size: 0.85rem;
  color: #dc2626;
  margin-top: 0.3rem;
}

/* === Submit Button === */
.submit-btn {
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.submit-btn:hover {
  background: #1e40af;
}

.submit-btn:disabled {
  background: #93c5fd;
  cursor: not-allowed;
}

/* === Status Message === */
.status-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.error-text {
  color: #dc2626;
}

.success-text {
  color: #16a34a;
}
