
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    background: #fff;
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    /* text-align: center; */
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}
.logo{
    display: flex;
    justify-content: center;
}

.logo img{
    width: 200px;
    margin: 1.5rem 0rem;
}

.modal input,
.modal select,
.modal button {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.modal select::selection{
    color: #333;
    background: #00b489;
}

.modal button {
    background-color: #00b489;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal button:hover {
    background-color: #28a745;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .close-btn {

        font-size: 2rem;

    }
    .modal {
        padding: 3rem;
    }

    .modal h2 {
        font-size: 2rem;
    }

    .modal input,
    .modal select,
    .modal button {
        padding: 1rem;
        font-size: 1rem;
    }
}
