
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    /*z-index: 1; !* Sit on top *!*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: clip; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* Modal content box */
.modal-content {
    background-color: #fefefe;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: auto; /* 15% from the top and centered */
    padding: 10px 2% 10px 2%;
    border: 1px solid #888;
    max-width: 500px;
    width: 95%;
}

/* Close button style */
.close {
    color: #aaa;
    float: left;
    width: 50px;
    text-align: left;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Login form style */
.login-form input[type="text"],
.login-form input[type="tel"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.login-form button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

/* Signup button style */
.signup-button {
    text-align: center;
    margin-top: 10px;
}

.signup-button a {
    text-decoration: none;
    color: #4CAF50;
}