/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent dark background */
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    margin-left: 5%;
    margin-right: 5%;
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid black;
}


/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    cursor: pointer;
    color: black;
}

#login-form {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between elements */
}

#login-form input[type="password"] {
    
    width: 75%; /* Sets the input width to 50% of the parent */
    padding: 8px; /* Adds padding for better usability */
    box-sizing: border-box; /* Includes padding in width/height calculation */
}

#login-form button {
    padding: 8px 16px; /* Adds padding to the button */
    width: 25%; /* Sets the input width to 50% of the parent */
}

