/* =========================
   GLOBAL FORM THEME
   Super Star Furniture
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body.form-page {
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* =========================
   CARD CONTAINER
   ========================= */

.form-card {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 36px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* =========================
   BACK BUTTON
   ========================= */

.form-back {
    position: absolute;
    top: 50px;
    left: 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
}

.form-back:hover {
    color: #FFC107;
}

/* =========================
   HEADINGS
   ========================= */

.form-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.form-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
}

/* =========================
   LABELS & INPUTS
   ========================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111827;
}

.form-control,
.form-select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

/* OTP input */
.otp-input {
    text-align: center;
    font-size: 22px;
    letter-spacing: 6px;
    font-weight: 600;
}

/* =========================
   PASSWORD TOGGLE
   ========================= */

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50px;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
}

/* =========================
   PRIMARY BUTTON
   ========================= */

.btn-form {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background: #FFC107;
    color: #111827;
    cursor: pointer;
    transition: 0.2s;
}

.btn-form:hover {
    background: #e6ac00;
}

/* =========================
   TIMER / INFO BOX
   ========================= */

.form-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #374151;
}

.form-timer {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #374151;
}

/* =========================
   LINKS
   ========================= */

.form-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
}

.form-link:hover {
    color: #FFC107;
}

/* =========================
   ALERTS
   ========================= */

.form-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 18px;
    text-align: center;
}

.form-success {
    background: #dcfce7;
    color: #166534;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 18px;
    text-align: center;
}
