#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#container h3 {
    font-size: 28px;
    font-weight: bold;
}

#container * {
    font-family: "Poppins", sans-serif;
    color: #67748e;
}

#container form#recoveryForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: #67748e;
    padding: 0 20px;
}

#container form#recoveryForm main {
    width: 100%;
    max-width: 500px;
    border: 1px solid rgb(216, 216, 216);
    padding: 20px;
    margin: 20px 0;
}

#container form#recoveryForm main h4 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

#container form#recoveryForm main p {
    margin: 15px 0;
    font-weight: 400;
}

#container form#recoveryForm main input {
    width: 100%;
    color: #495057;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid #d2d6da;
    outline: none;
    font-weight: 500;
    padding: 15px;
    margin: 10px 0;
    line-height: normal;
    font-size: 16px;
}

#container form#recoveryForm main input[type="submit"] {
    width: 100%;
    margin-top: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-wrap: wrap;
    background-image: linear-gradient(310deg, #2152ff, #21d4fd);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#container form#recoveryForm a {
    font-weight: 500;
    text-decoration: underline;
}

/* ========================================== confirmation message ============================== */

#confirmation {
    width: 100% !important;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 50%;
    max-width: 780px;
    margin: 0 50px;
    padding: 20px;
}

#confirmation h3 {
    font-size: 28px;
}

#confirmation main {
    width: 100%;
    text-align: left;
    padding: 20px;
    border: 1px solid #d2d6da;
    background-image: url("/static/auth/email.png");
    background-size: 40px;
    background-position: calc(100% - 20px) 10px;
    background-repeat: no-repeat;
    margin: 20px 0;
}

#confirmation main strong {
    font-size: 16px;
    font-weight: 600;
}

#confirmation main hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

#confirmation main p,
#confirmation main i {
    font-weight: 400;
    line-height: 30px;
    margin: 0 0 20px 0;
}

#confirmation button {
    text-decoration: underline;
    cursor: pointer;
    background: none;
    outline: none;
    border: none;
}

#confirmation a.button {
    min-width: 150px;
    line-height: normal;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background-image: linear-gradient(310deg, #2152ff, #21d4fd);
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

@media(max-width: 1000px) {
    #confirmation {
        width: 100% !important;
        margin: 0 !important;
    }
}