/* signup/style.css */

/* Custom Form Input Style */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 0.75rem; /* rounded-xl */
    border: 1px solid #e5e7eb; /* border-gray-200 */
    background-color: #f9fafb; /* bg-gray-50 */
    font-size: 0.875rem; /* text-sm */
    transition: all 0.2s;
    outline: none;
}

.form-input:focus {
    background-color: #ffffff;
    border-color: #3A2CCB; /* kiziee-primary */
    box-shadow: 0 0 0 3px rgba(58, 44, 203, 0.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

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

/* Loader for button */
.loader {
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 3px solid #ffffff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

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