.mlg-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    cursor: default;
}

.mlg-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mlg-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mlg-modal-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.mlg-close-modal {
    cursor: not-allowed;
    opacity: 0.5;
    font-size: 28px;
    font-weight: bold;
    color: #ccc;
}

.mlg-modal-body label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.mlg-modal-body input[type="text"],
.mlg-modal-body input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.mlg-modal-body input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.mlg-modal-body input[type="submit"]:hover {
    background-color: #45a049;
}

.mlg-register-link {
    margin-top: 15px;
    text-align: center;
}

.mlg-register-link a {
    color: #2196F3;
    text-decoration: none;
}

.mlg-register-link a:hover {
    text-decoration: underline;
}