/**
 * Authentication System Styles
 */

/* Form message styles */
.form-message {
    margin: 10px 0;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-message.error {
    background-color: #d32f2f;
    color: #fff;
}

.form-message.success {
    background-color: #2e7d32;
    color: #fff;
}

/* Spinner for form submission */
.form-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: form-spin 1s ease-in-out infinite;
}

@keyframes form-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Button states */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success checkmark animation */
.success-checkmark {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    position: relative;
}

.success-checkmark:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    left: 6px;
    top: 6px;
    animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
} 