/* Professional Sign In Styling */

.aviator-gradient {
    background: linear-gradient(135deg, #e91e63 0%, #880e4f 100%);
}

.auth-input:focus {
    border-color: rgba(233, 30, 99, 0.4);
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.05);
}

/* Tab Switching UI */
.active-tab {
    background-color: #1a1d24;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.login-btn {
    background: linear-gradient(135deg, #e91e63 0%, #880e4f 100%);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.login-btn:not(:disabled) {
    opacity: 1 !important;
    cursor: pointer !important;
}

.login-btn:not(:disabled):hover {
    transform: scale(1.02);
}

.login-btn:not(:disabled):active {
    transform: scale(0.98);
}

/* Custom Dropdown Styling */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.2rem center;
    background-size: 0.8rem;
}

/* Alert States */
#alert-box.error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

#alert-box.info {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

/* Hide Spin Buttons */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}