body {
    font-family: 'Google Sans', sans-serif;

    min-height: 100vh;
    /*  background: linear-gradient(135deg, #ff9966 0%, #ff6400 100%); */
    background: url(imgs/picture/ZoomBG_Shapes-1.jpg) no-repeat center center;

    /* animation: bgmove 10s linear infinite alternate; */
}

@keyframes bgmove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 40px 0 rgba(255, 94, 98, 0.18), 0 2px 8px 0 rgba(255, 153, 102, 0.10);
    padding: 2.8rem 2.2rem;
    max-width: 410px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: popin 0.8s cubic-bezier(.68, -0.55, .27, 1.55);
}

@keyframes popin {
    0% {
        transform: scale(0.7) rotate(-8deg);
        opacity: 0;
    }

    80% {
        transform: scale(1.05) rotate(2deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.login-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff9966 60%, #ff6400 100%);
    border-radius: 50%;
    opacity: 0.22;
    z-index: 0;
    animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

.login-card .logo {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 200px;
    filter: drop-shadow(0 2px 8px #ff996633);
    animation: bounce 1.2s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.login-card h2 {
    text-align: center;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ff6400;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #ff996633;
    z-index: 1;
    position: relative;
    font-size: 2.1rem;
}

.login-card .form-group {
    margin-bottom: 1.2rem;
    z-index: 1;
    position: relative;
}

.login-card .form-control {
    border-radius: 10px;
    border: 1.5px solid #ffe0d3;
    padding: 0.75rem 2.5rem 0.75rem 2.5rem;
    font-size: 1.07rem;
    background: #fff7f5;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px #ff99661a;
}

.login-card .form-control:focus {
    border: 2px solid #ff6400;
    background: #fff;
    outline: none;
    box-shadow: 0 2px 8px #ff640033;
}

.login-card .input-icon {
    position: absolute;
    left: 14px;
    top: 70%;
    transform: translateY(-50%);
    color: #ff9966;
    font-size: 1.2rem;
    z-index: 2;

}

@keyframes iconwiggle {
    0% {
        transform: translateY(-50%) rotate(-8deg);
    }

    100% {
        transform: translateY(-50%) rotate(8deg);
    }
}

.login-card .btn-login {
    width: 100%;
    background: linear-gradient(90deg, #ff9966 0%, #ff6400 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.1s;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px #ff640033;
    letter-spacing: 1px;
}

.login-card .btn-login:active {
    transform: scale(0.97);
}

.login-card .btn-login:disabled {
    opacity: 0.7;
}

.login-card .forgot-link,
.login-card .create-link {
    display: block;
    text-align: right;
    font-size: 1rem;
    margin-top: 0.7rem;
    color: #ff9966;
    text-decoration: none;
    z-index: 1;
    position: relative;
    transition: color 0.2s;
}

.login-card .create-link {
    text-align: center;
    margin-top: 2rem;
    color: #ff6400;
    font-weight: 600;
}

.login-card .create-link:hover,
.login-card .forgot-link:hover {
    color: #ff6400;
    text-decoration: underline;
}

.login-card .fun-emoji {
    position: absolute;
    right: -18px;
    top: -18px;
    font-size: 2.2rem;
    z-index: 2;
    animation: emoji-spin 3s linear infinite;
    filter: drop-shadow(0 2px 8px #ff996633);
}

@keyframes emoji-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .login-card {
        padding: 1.5rem 0.7rem;
        max-width: 95vw;
    }

    .login-card .logo {
        max-width: 120px;
    }
}