/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&family=Open+Sans:wght@300;400;500;600&display=swap'); */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.geral {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: 120px;

}


.container {
    width: 100%;
    max-width: 900px;
    display: flex;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.212);
    border-radius: 15px;
    background: #fff;
}

.animation {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 1rem;
}

.form {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 3rem;
}

form {
    width: 100%;
}

.form-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}

.form-header h1::after {
    content: '';
    display: block;
    width: 5rem;
    height: 0.3rem;
    background-color: #62D836;
    margin: 0 auto;
    position: absolute;
    border-radius: 10px;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}

.input-box input {
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 32px;
    box-shadow: 1px 1px 6px #0000001c;
    font-size: 16px;
}

.mb-4 {
    margin-bottom: 2rem;
}

.input-box input:hover {
    background-color: #eeeeee75;
}

.input-box input:focus-visible {
    outline: 1px solid #334179;
}

.input-box input::placeholder {
    color: #000000be;
}

.entrar-button button {
    width: 100%;
    border: none;
    background-color: #334179;
    padding: 0.62rem;
    border-radius: 15px;
    cursor: pointer;
}

.entrar-button button:hover {
    background-color: #334179;
}

.entrar-button button a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: #fff;
}

.align-right {
    display: flex;
    justify-content: right;
}


@media screen and (max-width: 1330px) {

    .form {
        width: 100%;
    }
}

@media screen and (max-width: 1064px) {
    .container {
        width: 90%;
        height: auto;
    }

    .input-group {
        flex-direction: column;
        z-index: 5;
        width: 100%;
        overflow-y: scroll;
        flex-wrap: nowrap;
    }

    .container>.animation {
        display: none;
    }

    .container>.form {
        width: 100%;
    }

    .form {
        padding: 0;
    }
    
.geral {
    margin-top: 80px;
}


}