/* Hero form messages */
.hero-form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
}

.hero-form-message.error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.hero-form-message.success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button states */
.hero-form .btn-get-started:disabled,
.hero-form .btn-google:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
