

/* Modal */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 50% auto;
}

    .modal-content h2 {
        margin-top: 0;
    }

    .modal-content input {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
    }


.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: gray;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

input, .login-btn, .signup {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
}

.close-btn {
    background-color: #f44336;
    color: white;
}

.signup {
    background-color: #4CAF50;
    color: white;
}

.login-btn {
    background-color: #008CBA;
    color: white;
}

.radio-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

    .radio-container label {
        font-size: 14px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
        user-select: none;
        transition: color 0.3s ease;
    }

    .radio-container input[type="radio"] {
        margin-right: 5px;
    }

.user-type-container {
    display: none; /* Hide user type selection initially */
}

@keyframes shimmer {
    0% {
        background-position: -100px 0;
    }

    100% {
        background-position: 100px 0;
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}