.forgot-container {
            max-width: 500px;
            margin: 60px auto;
            padding: 40px;
            background-color: #fff9f9;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(183, 28, 28, 0.2);
            font-family: 'Segoe UI', sans-serif;
        }

        .forgot-container h2 {
            text-align: center;
            color: #b71c1c;
            margin-bottom: 24px;
        }

        .forgot-container ul {
            padding-left: 20px;
            margin-bottom: 30px;
            color: #444;
            line-height: 1.8;
        }

        .text-medium {
            font-weight: 600;
        }

        .text-primary {
            color: #b71c1c;
        }

        .form-control {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #f2c7c7;
            border-radius: 10px;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #b71c1c;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #8b0000;
        }