/* Validation States */
.validation-error {
    border: 1px solid #f44336 !important;
}

.error-label {
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    display: block;
    text-align: left;
}

/* Loader Animation */
.loader-wrapper {
    text-align: center;
    width: 100%;
    padding: 40px 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Response Message Boxes */
.response-box {
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    font-size: 16px;
}

.success-box {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.error-box {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}