main {
    background-color: rgb(239, 238, 238);
    font-family: "Lexend", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

body {
    margin: 0;
}

.login_container {
    background-color: white;
    box-shadow: 0px 0px 10px rgb(160, 160, 160);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 450px;
    height: 350px;
    padding: 15px;
    border-radius: 10px;
}

img {
    width: 20vw;
    padding: 10px 0 20px 0;
}

.div_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 1rem;
}

.form {
    width: 100%;
    height: 100%;
    font-weight: bold;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group input {
    height: 70%;
}

.form-control {
    border-radius: 6px;
    color: #495057;
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.botao {
    color: white;
    font-size: large;
    font-weight: bold;
    background-color: cornflowerblue;
    transition: 0.5s;
    border-radius: 6px;
    border: none;
    padding: 0.8rem 1.5rem;
}

.botao:hover {
    background-color: rgb(33, 99, 220);
    transition: 0.5s;
    cursor: pointer;
}

.footer {
    padding-top: 15px;
    width: 450px;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: cornflowerblue;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    color: #721c24;
    margin: 10px 0;
    padding: 12px;
    width: 450px;
}

.alert-danger ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alert-danger li {
    margin: 5px 0;
}

@media screen and (max-width: 768px) {
    .login_container {
        width: 80%;
    }

    .footer {
        width: 80%;
    }

    img {
        width: 70vw;
    }

    .alert-danger {
        width: 80%;
    }
}