.alr-login-container {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: transparent;
}

.alr-login-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 32px;
    width: 100%;
    max-width: 400px;
}

.alr-login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.alr-login-logo img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.alr-login-logo a {
    display: inline-block;
    text-decoration: none;
    border: none;
}

.alr-login-logo a:hover {
    opacity: 0.8;
}

.alr-login-header {
    text-align: center;
    margin-bottom: 24px;
}

.alr-login-header h2 {
    color: #1a202c;
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.alr-login-header p {
    color: #718096;
    font-size: 14px;
    margin: 0;
}

.alr-login-messages,
.alr-forgot-messages {
    margin-bottom: 20px;
}

.alr-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
}

.alr-message.error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alr-message.success {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

.alr-form-group {
    margin-bottom: 20px;
}

.alr-form-group label {
    display: block;
    color: #2d3748;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.alr-form-group input[type="text"],
.alr-form-group input[type="password"],
.alr-form-group input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    box-sizing: border-box;
    background: #fff;
}

.alr-form-group input:focus {
    outline: none;
    border-color: #0C3149;
    box-shadow: 0 0 0 3px rgba(12, 49, 73, 0.05);
}

.alr-password-wrapper {
    position: relative;
}

.alr-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.alr-toggle-password:hover {
    color: #4a5568;
}

.alr-remember {
    margin-top: 12px;
}

.alr-remember label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    color: #4a5568;
}

.alr-remember input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.cf-turnstile {
    margin: 20px 0;
}

.alr-submit-btn {
    width: 100%;
    padding: 12px;
    background: #0C3149;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alr-submit-btn:hover {
    background: #0a2538;
}

.alr-submit-btn:active {
    transform: scale(0.98);
}

.alr-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alr-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.alr-login-footer {
    text-align: center;
    margin-top: 16px;
}

.alr-forgot-link {
    color: #0C3149;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.alr-forgot-link:hover {
    text-decoration: underline;
}

.alr-login-register {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    font-size: 13px;
    color: #718096;
}

.alr-login-register a {
    color: #0C3149;
    font-weight: 500;
    text-decoration: none;
    margin-left: 4px;
}

.alr-login-register a:hover {
    text-decoration: underline;
}

/* Modal */
.alr-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.alr-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.alr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.alr-modal-header h3 {
    margin: 0;
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
}

.alr-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #a0aec0;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.alr-modal-close:hover {
    background: #f7fafc;
    color: #4a5568;
}

.alr-modal-body {
    padding: 24px;
}

.alr-modal-body p {
    color: #718096;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
    .alr-login-card {
        padding: 24px 20px;
    }
    
    .alr-login-header h2 {
        font-size: 22px;
    }
    
    .alr-login-logo {
        margin-bottom: 20px;
    }
}
