* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body,
html {
    height: 100%;
}

.background {
    background-image: url('../img/bg_water_meyer.png');
    background-size: cover;
    background-position: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.login-container {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.login-form {
    background-color: #132237;
    opacity: 0.88;
    padding: 40px;
    backdrop-filter: blur(10px);
    align-content: center;
    color: #fff;
    width: 30%;
    height: 100%;
    justify-content: center;
}

.logo_login {
    margin-bottom: 72px;
    display: flex;
    justify-content: center;
}

.logo_login img {
    width: 90%;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 32px;
    color: #ff6600;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 2rem;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    font-size: 1.125rem;
}

.login-form input:focus {
    border: 1px solid #ff6600;
}

.btt_login {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.login-form button {
    border-radius: 6px;
    background: linear-gradient(180deg, var(--s1, #0094C8) 0%, var(--p3, #124777) 100%);
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.12);
    padding: 12px 24px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: 0.3s;
}

.login-form button:hover {
    background: linear-gradient(180deg, var(--s1, #005A7A) 0%, var(--p3, #042849) 100%);
    scale: 1.15;
}



.login-form button:hover {
    background-color: #e05500;
}

.logo-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background-color: #fff;
    opacity: 0.6;
    border-radius: 50%;
}

.logo-footer img {
    height: 100px;
    /* Ajuste a altura conforme a necessidade */
    opacity: 1;
    /* Um pouco translúcido para não chamar muita atenção */
    transition: opacity 0.3s ease;
}

.logo-footer:hover {
    opacity: 1;
}

@media (max-width: 1000px) {
    .login-form {
        padding: 20px;
        width: 40%;
    }
}

@media (max-width: 700px) {
    .login-form {
        padding: 20px;
        width: 50%;
    }
}

@media (max-width: 500px) {
    .login-form {
        padding: 20px;
        width: 80%;
        height: 50%;

    }

    .logo_login {
        margin-bottom: 40px;
    }

    .login-container {
        justify-content: center;
    }
}