/* Clean Beautiful Transfer Form */
.transfer-form {
    background: #0420d5;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(4, 32, 213, 0.2);
    max-width: 650px;
    margin: 20px auto;
}

.transfer-form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-select:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.form-select:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
}

.form-select option {
    background: #0A58CA;
    color: #fff;
    padding: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row .form-group {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .transfer-form {
        padding: 20px 18px;
        margin: 15px auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .transfer-form h2 {
        font-size: 20px;
    }
}


/* Prevent Splash Screen Flash */
#splashScreen, .splash-screen {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Prevent Flash of Unstyled Content */
body {
    opacity: 1 !important;
}

html, body {
    visibility: visible !important;
}

/* Disable Page Load Animations */
.header-animated,
.hero-animated,
.section-animated,
section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Fix Feature Items Icon Overflow */
.dashboard-features-horizontal .feature-item {
    overflow: hidden;
}

.dashboard-features-horizontal .feature-item i {
    flex-shrink: 0;
    display: inline-block;
}
