/* Popup Form Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
}

.popup-title {
    color: #222F58;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

.popup-form input,
.popup-form textarea,
.popup-form label {
    width: 95%;
    padding: 0.6rem;
    margin-bottom: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.popup-form label {
    display: block;
    border: none;
    padding: 0;
    color: #444444;
    font-weight: normal;
}

.popup-form button {
    background-color: #222F58;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.popup-form button:hover {
    background-color: #1a237e;
}

.close-popup {
    display: none;
}

.close-popup:hover {
    color: #333;
}

@media (max-width: 768px) {
    .popup-form {
        width: 90%;
        margin: 0 1rem;
    }
}