﻿html {
    font-family: 'Poppins-Regular';
}

body {
    width: 100vw;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #e9f2f0;
    background: radial-gradient(circle, rgba(233, 242, 240, 1) 0%, rgba(188, 204, 204, 1) 100%);
}

.container_index {
    margin-top: -25px;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.login_index {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #3B8233 0%,#3B8233 40%,#3B8233 40%,white 40%,white 100%);
    width: 25%;
    max-width: 450px;
    min-width: 400px;
    height: 80%;
    min-height: 600px;
    border-radius: 25px;
    -webkit-box-shadow: 8px 8px 53px 10px rgba(63, 63, 79, 0.21);
    -moz-box-shadow: 8px 8px 53px 10px rgba(63, 63, 79, 0.21);
    box-shadow: 8px 8px 53px 10px rgba(63, 63, 79, 0.21);
    border: solid 3px #EEEEEE;
    z-index: 2;
}

.login_index_topo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35%;
    border-radius: 20px 20px 0px 0px;
}

.login_index_form {
    width: 85%;
    height: 75%;
    background-color: #FFF;
    margin-top: 0px;
    border-radius: 20px 20px 0px 0px;
    padding: 20px;
}

#txtUser {
    color: #3B8233 !important;
    font-weight: 600;
}

#txtSenha {
    color: #3B8233 !important;
    font-weight: 600;
}

#btnEntrar {
    width: 100%;
    background-color: #3B8233 !important;
}

    #btnEntrar:hover {
        background-color: #bf5212 !important;
        border-color: #bf5212 !important;
    }

    #btnEntrar:active {
        background-color: #3B8233 !important;
        border-color: #3B8233 !important;
    }

section {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    top: 0;
    left: 0;
}

    section .wave {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background: #FFFFFF00;
        box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
        transition: 0.9s;
    }

        section .wave span {
            content: "";
            position: absolute;
            width: 325vh;
            height: 325vh;
            top: 0;
            left: 50%;
            transform: translate(-50%, -85%);
            background: #000;
        }

            section .wave span:nth-child(1) {
                border-radius: 45%;
                background: rgba(157, 192, 153, 0.1);
                animation: animate 15s linear infinite;
            }

            section .wave span:nth-child(2) {
                border-radius: 40%;
                background: rgba(157, 192, 153, 0.1);
                animation: animate 20s linear infinite;
            }

            section .wave span:nth-child(3) {
                border-radius: 42.5%;
                background: rgba(157, 192, 153, 0.1);
                animation: animate 25s linear infinite;
            }

@keyframes animate {
    0% {
        transform: translate(-50%, -85%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -85%) rotate(360deg);
    }
}

.lbl-info-login {
    font-size: 10px;
    text-align: justify;
    padding: 10px;
    font-family: 'Poppins-Italic';
    line-height: 12px;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 15px;
}

.links-login {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    gap: 10px;
}

    .links-login a {
        font-family: 'Poppins-Medium';
        text-decoration: none;
        font-size: 11px;
        color: #004600;
    }

        .links-login a:hover {
            color: #bf5212;
        }
