        /* =========================
           FORGOT PASSWORD PAGE
        ========================= */
        body {
            min-height: 100vh;
            margin: 0;
            font-family: "Open Sans", Arial, sans-serif;
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .forgot-wrapper {
            width: 100%;
            padding: 20px;
        }

        .forgot-box {
            max-width: 420px;
            margin: auto;
            background: #ffffff;
            padding: 35px 30px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        .forgot-box h2 {
            text-align: center;
            margin-bottom: 12px;
            font-size: 26px;
            color: #203a43;
        }

        .forgot-box p {
            text-align: center;
            font-size: 14px;
            color: #555;
            margin-bottom: 24px;
        }

        .forgot-box input[type="email"] {
            width: 100%;
            padding: 12px 14px;
            margin-bottom: 18px;
            border-radius: 4px;
            border: 1px solid #ccc;
            font-size: 14px;
            box-sizing: border-box;
        }

        .forgot-box input[type="email"]:focus {
            outline: none;
            border-color: #203a43;
        }

        .forgot-box button {
            width: 100%;
            padding: 12px;
            background: #203a43;
            border: none;
            border-radius: 4px;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .forgot-box button:hover {
            background: #2c5364;
        }

        .msg {
            background: #e0f0ff;
            color: #004080;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            text-align: center;
            font-size: 14px;
        }
        

        .msg.error {
            background: #ffe0e0;
            color: #b00000;
        }