/* PAGE */
.force-change-pass-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

/* CARD */
.force-change-pass-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* LOGO */
.force-change-pass-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 34px;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

/* TITLE */
.force-change-pass-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.force-change-pass-subtitle {
  text-align: center;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ALERT */
.force-change-pass-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #fff7ed;
  color: #c2410c;
  margin-bottom: 24px;
}

/* FORM */
.force-change-pass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FIELDS */
.force-change-pass-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.force-change-pass-label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.force-change-pass-input {
  width: 100%;
  height: 54px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
  background: #f8fafc;
  box-sizing: border-box;
}

.force-change-pass-input:focus {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* STRENGTH */
.force-change-pass-strength {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.force-change-pass-strength-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.force-change-pass-strength-bar {
  height: 12px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.force-change-pass-strength-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  transition: 0.3s ease;
}

/* BUTTON */
.force-change-pass-btn {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  font-size: 15px;
}
