/* Curator OTP Registration Styles - Minimal additions to existing theme styles */

/* OTP specific styling */
.otp-group input {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Message styling */
.message {
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 500;
    display: none;
    animation: slideIn 0.3s ease;
}

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

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

/* Form step transitions */
.form-step {
    transition: all 0.3s ease;
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Slide in animation for messages */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icons in message */
.message i {
    margin-right: 8px;
}

