@import url('../css/reset.css');

:root{
    --cor-primaria: #000000;
    --cor-secundaria: #f6f6f6;
    --cor-terciaria: #6e5a72;
    --cor-hover: #6e5a72;
    --font-primaria: Georgia, 'Times New Roman', Times, serif;
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ae85b02c;
    margin: 0;
}

.container {
    width: 80%;
    height: 80vh;
    display: flex;
    box-shadow: 1px 1px 6px #00000034;
}

.imagem {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:  #ae85b04b;
    padding: 1rem;
}

.imagem img {
    width: 31rem;
}

.form {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ae85b04b;
    padding: 3rem;
}



.form-header {
    margin-bottom: 3rem;
    margin-top: 30%;
    display: flex;
    justify-content: space-between;
}



.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
    margin-left: 6%;
}

.input-box input {
    margin: 0.6rem 0;
    padding: 0.8rem 7.2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px #00000070;
    font-size: 0.8rem;
}

.input-box input:hover {
    background-color: #eeeeee75;
}

.input-box input:focus-visible {
    outline: 1px solid #a8a8a8;
}

.input-box label{
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000c0;
}

.input-box input::placeholder {
    color: #0000008a;
    ;
}

.cadastro-button {
    display: flex;
    margin-top: 3%;
    margin-bottom: 20%;
    margin-left: 6%;
}

.entrar-button button {
    width: 88%;
    margin-top: 2.5rem;
    margin-left: 6%;
    border: none;
    background-color: var(--cor-hover);
    padding: 0.62rem;
    border-radius: 5px;
    cursor: pointer;
}

.entrar-button button:hover {
    background-color: #6e5a73c9;
}

.entrar-button button a {
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: #fff;
}

a:hover {
    -webkit-filter: drop-shadow(15px 10px 5px rgba(0,0,0,.5));
    filter: drop-shadow(10px 5px 5px rgb(157, 2, 149));
    transition: .3s;
}

a {
    font-weight: 500;
    color: #67096e;
}


@media screen and (max-width: 990px){
    .imagem {
        display: none;
    }
    .container {
        width: 100%;
        margin-left: 0;
    }
    .form {
        width: 100%;
    }
    .form-header {
        flex-direction: column;
        margin-top: 2%;
        margin-left: 20%;
    }
    .input-group {
        margin-left: 18%;
    }
    .input-box {
        width: 60%;
    }
    
    .entrar-button {
        width: 64%;
        margin-top: 1.5rem;
        margin-left: 18%;
    }

    .cadastro-button {
    margin-left: 21%;
    }
    
}

@media screen and (max-width: 1064px) {
    .container {
        width: 90%;
        height: auto;
    }
    .input-group {
        flex-direction: column;
        z-index: 5;
        padding-right: 5rem;
        max-height: 10rem;
        overflow-y: scroll;
        flex-wrap: nowrap;
    }

    .entrar-button button{
        margin-left: 5%;
        width: 78%;
    }
    
}