/* =========================================
   iGrroww.in | Login Portal Styles
   File: assets/css/login.css
========================================= */

/* Premium Input Fields Design */
.input-minimal {
    background-color: #f8fafc;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
}

.input-minimal:hover {
    border-color: #e2e8f0;
}

.input-minimal:focus {
    background-color: #ffffff;
    border-color: #00C16A;
    box-shadow: 0 10px 25px -5px rgba(0, 193, 106, 0.1);
}

/* Animations */
.animate-on-scroll {
    animation: fadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}