/* Magic Link Access - Frontend Styles - Minimalist */

.mla-auth-wrapper {
    /* Minimalistisch - kein Rahmen, kein Schatten */
    margin: 20px 0;
}

.mla-request-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mla-email-field {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.mla-email-field:focus {
    outline: none;
    border-color: #2271b1;
}

.mla-submit-btn {
    background: #2271b1;
    color: #fff;
    padding: 10px 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.mla-submit-btn:hover {
    background: #135e96;
}

.mla-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.mla-message {
    margin-top: 10px;
    padding: 12px;
    border-radius: 4px;
    line-height: 1.6;
}

.mla-message br {
    display: block;
    content: "";
    margin-bottom: 0.5em;
}

.mla-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mla-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mla-message a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.mla-message p {
    margin: 0 0 1em 0;
}

.mla-message p:last-child {
    margin-bottom: 0;
}

.mla-captcha-field {
    margin-top: 10px;
}

.mla-error {
    padding: 15px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 20px 0;
}

.mla-protected-content {
    /* Protected content wrapper - no special styling */
}

