/* 
   SoftPay Wallet - Login Specific Styles
*/

/* Login Container */
.login-container {
    max-width: 440px;
    width: 90%;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 24px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

/* Background Animations */
.bg-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.circle-1 {
    width: 40vw;
    height: 40vw;
    min-width: 300px;
    min-height: 300px;
    background: #472097;
    top: -100px;
    left: -100px;
    animation: float 20s infinite alternate;
}

.circle-2 {
    width: 35vw;
    height: 35vw;
    min-width: 250px;
    min-height: 250px;
    background: #ec4899;
    bottom: -100px;
    right: -100px;
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(10deg);
    }
}

/* Login specific overrides */
.hover-opacity:hover {
    opacity: 0.8;
}

.form-check-input:checked {
    background-color: #472097;
    /* primary */
    border-color: #472097;
}

/* Loading Spinner */
.spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.15em;
    border-radius: 50%;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Login Form Utilities */
.min-vh-100 {
    min-height: 100vh !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.cursor-pointer {
    cursor: pointer;
}

.scale-hover:hover {
    transform: scale(1.02);
}

/* Spacing & Position helpers for Login */
.ps-5 {
    padding-left: 3rem !important;
}

.end-0 {
    right: 0 !important;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important;
}