
.login-form-wrapper {
    margin: 0;
    padding: 0;
}
.login-form-wrapper a.close-login-form {
    display: none;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 11px;
    background-color: #c32828;
    color: #fff;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 1.5;
}
.login-form-wrapper.modal a.close-login-form {
    display: inline;
}

a.open-login-form,
a.custom-logout {
    color: #f9f9f9;
}

.login-form-wrapper.modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease-in-out 0s;
}

body.login-form-open .login-form-wrapper.modal {
    opacity: 1;
    pointer-events: all;
}

#custom-login-form {
    position: relative;
    width: 400px;
    text-align: left;
    max-width: 98%;
    margin: auto;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

#custom-login-form h3 {
    margin-top: 0;
}

#custom-login-form p {
    margin-bottom: 15px;
}

#custom-login-form label {
    display: block;
    margin-bottom: 5px;
}

#custom-login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

#custom-login-form button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#custom-login-form button:hover {
    background-color: #005177;
}

#custom-login-form #login-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}