body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fb;
    color: #004f8b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

input[type="email"] {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 250px;
    margin-right: 10px;
}

button {
    padding: 10px 16px;
    font-size: 1rem;
    background-color: #004f8b;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}


/* Modal Content Styling */
.modal-content {
    border-radius: 16px;
    border: none;
    padding: 24px;
    background-color: #f8f9fb; /* Matches your page background */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Modal Header */
.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

/* Modal Title */
.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #004f8b;
    font-weight: 600;
}

/* Modal Close Button */
.modal-header .close {
    font-size: 1.5rem;
    color: #666;
    opacity: 0.7;
}

    .modal-header .close:hover {
        opacity: 1;
    }

/* Modal Body */
.modal-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
    padding-top: 12px;
}

/* Modal Footer Button */
.modal-footer {
    border-top: none;
    justify-content: center;
}

    .modal-footer .btn-secondary {
        background-color: #004f8b;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 10px 20px;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
    }

        .modal-footer .btn-secondary:hover {
            background-color: #003f73;
        }

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translateY(-20px);
}


footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: #666;
    background-color: #f8f9fb;
}
