.aml-login-form {
    max-width: 400px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.aml-login-form h3 {
    margin: 0 0 30px;
    font-size: 24px;
    text-align: center;
    color: #333;
}
.aml-field {
    margin-bottom: 20px;
}
.aml-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}
.aml-field input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}
.aml-field input[type="email"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}
.aml-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}
.aml-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}
.aml-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.aml-message {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}
.aml-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.aml-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
