﻿/* Container da tela de login */
.login-container {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

/* Fundo com animação de gradiente suave */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, #ffffff, #7cc6ff, #ffe896);
    background-size: 800% 800%;
    animation: gradientAnimation 15s ease infinite;
    z-index: 0;
    opacity: 0.7;
}

/* Logo com destaque */
.logo-wrapper {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .logo-wrapper:hover {
        transform: scale(1.05);
    }

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
