/* assets/login.css - Base login styles */

.mlr-login-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.mlr-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.mlr-login-header h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin: 0;
}

.mlr-login-header p {
    color: #6b7280;
    margin: 5px 0 0;
}

.mlr-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mlr-login-column {
    padding: 20px;
    border-right: 1px solid #e9ecef;
}

.mlr-register-column {
    padding: 20px;
}

.mlr-login-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #374151;
}

.mlr-login-form .required {
    color: #ef4444;
}

.mlr-login-form .mlr-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.mlr-login-form .mlr-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.mlr-login-form .mlr-form-group {
    margin-bottom: 15px;
}

.mlr-login-form .mlr-form-remember {
    margin: 10px 0;
}

.mlr-login-form .mlr-btn-primary {
    width: 100%;
    padding: 12px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.mlr-login-form .mlr-btn-primary:hover {
    background: #059669;
}

.mlr-lost-password {
    text-align: center;
    margin-top: 10px;
}

.mlr-lost-password a {
    color: #6b7280;
    text-decoration: none;
}

.mlr-lost-password a:hover {
    color: #10b981;
}

.mlr-register-form {
    text-align: center;
    padding: 20px 0;
}

.mlr-register-form h3 {
    color: #1a1a2e;
}

.mlr-register-form p {
    color: #6b7280;
    margin: 10px 0 20px;
}

.mlr-btn-secondary {
    display: inline-block;
    padding: 10px 30px;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.mlr-btn-secondary:hover {
    background: #e5e7eb;
}

.mlr-logged-in {
    text-align: center;
}

.mlr-login-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mlr-login-actions .mlr-btn-primary {
    padding: 10px 30px;
    background: #10b981;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.mlr-login-actions .mlr-btn-secondary {
    padding: 10px 30px;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mlr-login-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mlr-login-column {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
}

