body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: white;
    margin: 0;
    padding: 0;
    font-family: "Varela Round", sans-serif;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(48, 125, 195);
    width: 100%;
    height: 2vw;
    font-family: "Varela Round", sans-serif;
}

nav>ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav>ul>li {
    list-style: none;
}

h2 {
    margin: 0;
    padding: 0;
    color: white;
    font-family: "Varela Round", sans-serif;
    font-size: 2vw;
}

main {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 95%;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#form_log_in {
    border-radius: 13px;
    border: 1px solid rgb(231, 233, 236);
    width: 80%;
    padding: 20px;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
}

h3 {
    font-family: "Varela Round", sans-serif;
    font-size: 2vw;
}

.form-outline .form-control {
    background: white;
}

.imag {
    object-fit: contain;
    width: 50%;
    height: 50%;
}