section {
    display: flex;
    justify-content: center;
    height: 100%;
    background-image: url(../images/login-bg.webp);
    background-position: center;
    background-size: cover;
    min-height: 80vh;
    box-shadow: inset 100vh 100vw rgba(5, 30, 68, 0.4);
}


.content {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    max-width: 500px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px;
}

.form-group {
    margin: 0;
}

.form-group-header {
    text-align: center;
    font-size: 30px;
}

.form-group-inputs {
    display: flex;
    flex-direction: column;
}

.buttons {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.buttons p {
    font-size: 18px;
    color: var(--lightblack);
    font-family: var(--font-family);
    margin: 0;
}

.buttons button {
    width: 100%;
    background-color: var(--lightblue);
    color: var(--white);
    height: 45px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.buttons button:hover {
    background-color: var(--darkblue);
}

.buttons a {
    width: 100%;
    border: 2px solid var(--lightblue);
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--lightblue);
    font-family: var(--font-family);
    border-radius: 5px;
}

.footer {
    padding-top: 20px;
}

@media (max-width: 580px) {
    form {
        border-radius: unset;
    }
}

@media (max-width: 380px) {
    form {
        padding: 20px;
    }
}