.alr-form {
    margin: 1em 0;
}

.alr-form label {
    display: block;
    margin-bottom: 0.3em;
}

.alr-form input[type="text"],
.alr-form input[type="email"],
.alr-form input[type="password"] {
    width: 100%;
    margin-bottom: 1em;
    padding: 0.5em;
}

/* Modal Styles */
.alr-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.alr-modal-content {
    background-color: #747474;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 5px;
}

.alr-close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.alr-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.alr-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alr-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}