 * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: var(--azul);

    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    background-color: var(--branco);

    width: 400px;
    height: 500px;
    padding: 10px;

    border-radius: 10px;

    box-shadow: 0px 0px 50px #00000080;

    font-family: var(--font);
}

#title_container {
    text-align: center;
    width: 100%;
    height: 30%;
}

#title_container img {
    border-radius: 10px;
    margin-top: 10px;
}

#title_container * {
    margin-bottom: 10px;
}

#form_container {
    height: 60%;
    width: 100%;
    padding: 10px;
    margin-top: 50px;
    
}

.input_component {
    margin: 10px 0px;
}

.input_component input {
    width: 100%;
    height: 30px;

    padding: 0px 5px;
    margin-top: 5px;
    border-radius: 5px;
}

#btn_submit_container {
    margin-top: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn_submit_container button {
    width: 150px;
    height: 50px;
    padding: 10px;

    background-color: var(--azul);
    
    color: var(--branco);
    font-weight: bold;
    font-size: 1.1em;
    
    border-radius: 10px;
    border-color: transparent;
    
    cursor: pointer;

    transition: transform .05s linear;
}

#btn_submit_container button:hover {
    transform: scale(1.05);
}





