/* login-popup.css */
.login-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.login-popup-content {
    position: fixed;
    background-color: transparent; 
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);}

@media only screen and (max-width: 600px) {
 .login-popup-content {
   width: 90%;
 }
}
.login-popup-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    background-color: #c7cadc66;
    font-family: none;
    float: right;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;   
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.login-popup-close:hover,
.login-popup-close:focus {
    text-decoration: none;
    cursor: pointer;
    background-color:#c5cadc;
}

.login-popup-form {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.login-popup-form p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.login-popup-form input[type="email"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

.login-popup-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.login-popup-form button:hover {
    background-color: #45a049;
}
