.account-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.account-container a {
    text-decoration: none;
}

.account-box {
    background-color: #DEDBD2;
    font-family: 'Nunito', sans-serif;
    width: 25rem;
    height: 10rem;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.40));
    font-weight: bold;
}

@media screen and (max-width: 940px) {
    .account-box {
        width: 15rem;
        font-size: 1em;
    }
}

@media screen and (max-width: 600px) {
    .account-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .account-box {
        width: 20rem;
        height: 8rem;
    }
}

@media screen and (max-width: 400px) {
    .account-box {
        width: 15rem;
    }
}

/**********************ADRESSES**********************/

.p-address {
    font-family: 'Nunito', sans-serif;
}

#address_submit {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 2rem;
    border: none;
    border-radius: 5px;
    width: 20rem;
    height: 3rem;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.40));
    background-color: #B0C4B1;
}

@media screen and (max-width: 680px) {

    #address_submit {
        width: 15rem;
    }
}

/**********************PASSWORD**********************/

#change_password_submit {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 2rem;
    border: none;
    border-radius: 5px;
    width: 20rem;
    height: 3rem;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.40));
    background-color: #B0C4B1;
}

@media screen and (max-width: 680px) {

    #change_password_submit {
        width: 15rem;
    }
}
