/* ==========================================================
   BINKEI - Login CSS
   File : css/login.css
   ========================================================== */

/* ----------------------------------------------------------
   1. Global Base Styles
   ---------------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    background-color: #080911;
    color: #ffffff;
}

/* ----------------------------------------------------------
   2. Card & Gradient Border
   ---------------------------------------------------------- */
.gradient-border-box {
    position: relative;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(232, 28, 255, 0.40) 0%,
        rgba(0, 114, 255, 0.15) 50%,
        rgba(0, 210, 255, 0.40) 100%
    );
    box-shadow:
        0 0 40px rgba(128, 0, 255, 0.15),
        0 0 80px rgba(0, 114, 255, 0.10);
}

.gradient-border-content {
    border-radius: 23px;
    background: rgba(13, 17, 29, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ----------------------------------------------------------
   3. Custom Form Inputs
   ---------------------------------------------------------- */
.custom-input {
    background: #151926;
    border: 1px solid #282f45;
    transition: all 0.25s ease;
}

.custom-input:focus {
    outline: none;
    background: #1a2033;
    border-color: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.30);
}

/* ----------------------------------------------------------
   4. Gradient Submit Button
   ---------------------------------------------------------- */
.btn-gradient {
    background: linear-gradient(
        90deg,
        #d814a0 0%,
        #3f51b5 50%,
        #0072ff 100%
    );
    background-size: 200% auto;
    transition:
        background-position 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

.btn-gradient:hover {
    background-position: right center;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(216, 20, 160, 0.50);
}

.btn-gradient:active {
    transform: translateY(0);
}

/* ----------------------------------------------------------
   5. Animations
   ---------------------------------------------------------- */
@keyframes logoPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

.group:hover .absolute.-inset-1 {
    animation: logoPulse 2s infinite ease-in-out;
}

/* ----------------------------------------------------------
   6. Custom Scrollbar
   ---------------------------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080911;
}

::-webkit-scrollbar-thumb {
    background: #272f45;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #39445f;
}