@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
        
        * { box-sizing: border-box; }
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            color: #333;
        }

        .container {
            background: #fff;
            width: 400px;
            max-width: 90vw;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            position: relative;
        }

        /* ✅ UPDATED: Center align form container */
        .form-container {
            padding: 2rem 3rem;
            transition: transform 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center; /* ✅ CENTER ALIGN ALL CHILDREN */
            text-align: center; /* ✅ CENTER ALIGN TEXT */
        }

        /* ✅ ADD: Center align forms */
        .form-container form {
            width: 100%;
            max-width: 300px; /* ✅ CONSISTENT FORM WIDTH */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .header {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #464866;
            text-align: center;
        }

        /* ✅ UPDATED: Center align inputs */
        input {
            width: 100%; /* ✅ FULL WIDTH OF FORM */
            padding: 0.75rem 1rem;
            margin-bottom: 1.25rem;
            border-radius: 8px;
            border: 1.5px solid #ddd;
            font-size: 1rem;
            transition: border-color 0.3s;
            box-sizing: border-box; /* ✅ INCLUDE PADDING IN WIDTH */
            text-align: left; /* ✅ KEEP TEXT LEFT-ALIGNED INSIDE INPUTS */
        }

        input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 8px #667eea55;
        }

        /* ✅ UPDATED: Center align buttons */
        button {
            width: 100%; /* ✅ FULL WIDTH TO MATCH INPUTS */
            border: none;
            background: #667eea;
            color: white;
            font-weight: 600;
            padding: 0.85rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            box-sizing: border-box; /* ✅ INCLUDE PADDING IN WIDTH */
        }

        button:hover { background: #5a67d8; }

        .message {
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
            color: #38a169;
            display: none;
            max-width: 300px; /* ✅ MATCH FORM WIDTH */
            word-wrap: break-word; /* ✅ WRAP LONG MESSAGES */
        }

        .error {
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
            color: #e53e3e;
            display: none;
            max-width: 300px; /* ✅ MATCH FORM WIDTH */
            word-wrap: break-word; /* ✅ WRAP LONG MESSAGES */
        }

        .toggle-links {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #666;
            max-width: 300px; /* ✅ MATCH FORM WIDTH */
        }

        .toggle-links span {
            cursor: pointer;
            font-weight: 600;
            color: #667eea;
            transition: color 0.3s;
        }

        .toggle-links span:hover { color: #5a67d8; }

        /* ✅ Slide Animation Container */
        .slide-wrapper {
            display: flex;
            width: 300%; /* ✅ Updated for 3 forms */
            transform: translateX(0);
            transition: transform 0.5s ease;
        }

        .form-box {
            min-width: 33.33%; /* ✅ Updated for 3 forms */
        }

        /* ✅ User ID input styling */
        .user-id-input {
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ✅ Form steps indicator */
        .steps-indicator {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            width: 100%; /* ✅ FULL WIDTH */
        }

        .step {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            transition: background 0.3s;
        }

        .step.active { background: #667eea; }

        /* ✅ ADD: Center align paragraphs in forms */
        .form-container p {
            text-align: center;
            max-width: 300px;
            margin: 0 auto 1.5rem auto;
            line-height: 1.5;
        }

/* ✅ SPECIFIC STYLING FOR FORGOT PASSWORD INPUTS */

/* Make forgot password form wider */
#forgot-step-1 form,
#forgot-step-2 form {
    max-width: 460px !important; /* ✅ WIDER than default 300px */
}

/* Make forgot password inputs larger */
#forgot-step-1 input,
#forgot-step-2 input {
    padding: 1rem 1.2rem !important; /* ✅ MORE PADDING */
    font-size: 1.05rem !important; /* ✅ SLIGHTLY LARGER FONT */
    min-height: 50px !important; /* ✅ TALLER INPUTS */
    border-radius: 10px !important; /* ✅ MORE ROUNDED */
}

/* Make forgot password buttons match the larger inputs */
#forgot-step-1 button,
#forgot-step-2 button {
    padding: 1rem 1.2rem !important; /* ✅ MATCH INPUT PADDING */
    font-size: 1.05rem !important; /* ✅ MATCH INPUT FONT SIZE */
    min-height: 50px !important; /* ✅ MATCH INPUT HEIGHT */
    border-radius: 10px !important; /* ✅ MATCH INPUT BORDER RADIUS */
}

/* Special styling for User ID input */
.user-id-input {
    font-family: 'Courier New', monospace !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 0.95rem !important; /* ✅ SLIGHTLY SMALLER FOR USER ID */
    padding: 1rem 1.2rem !important; /* ✅ CONSISTENT PADDING */
}

/* Placeholder styling for forgot password inputs */
#forgot-step-1 input::placeholder,
#forgot-step-2 input::placeholder {
    font-size: 0.9rem !important; /* ✅ APPROPRIATE PLACEHOLDER SIZE */
    color: #999 !important;
}

/* User ID placeholder specific styling */
.user-id-input::placeholder {
    font-size: 0.85rem !important;
    font-family: 'Poppins', sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}