body {
    background-color: #E9E8E6;
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: #353C40;
    padding: 1rem 2rem 1rem;
}

input {
    font-size: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 0.5px solid #CCC5C1;
    width: 13rem;
    margin-bottom: 0.5rem;
}

button,
a {
    background-color: #DA2032;
    width: 15rem;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    border: 0;
    cursor: pointer;
}

button {
    margin-top: 0.7rem;
}

header {
    width: 100%;
    margin-left: -3rem;
    margin-bottom: 1rem;
}

.share main,
.family main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

footer h3 {
    text-align: center;
    margin: 0;
}

.stores {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.stores a {
    background-color: transparent;
    padding: 0.5rem;
}

.stores a img {
    width: 13rem;
}

.password-toggle {
    position: absolute;
    right: -38px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-toggle img {
    width: 24px;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.position-relative {
    position: relative;
}

body.reset-password {
    gap: 1rem;
}

.response {
    text-align: center;
}

input.error {
    border-color: #DA2032;
}

p.error {
    color: #DA2032;
}

p.success {
    color: #008000 !important;
}

.m-0 {
    margin: 0;
}

/* MOBILE */

@media only screen and (max-width: 600px) {
    .stores {
        flex-direction: column;
        gap: 0;
    }
}