.forgot-upper {
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 20px;
    background-color: #242f33;
}
img {
    display: block;
    width: 120px;
    margin: 0 auto;
}
.forgot-main {
    width: 400px;
    margin: 0 auto 0 auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0px 1px 3px #ccc;
    border-radius: 10px;
    transition-duration: .3s;
}
#forgot-header {
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}
input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#forgot-buttons {
    display: flex;
    justify-content: space-between;
}
.button {
    width: 160px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    color: white;
    background-color: #777;
    text-align: center;
    cursor: pointer;
    transition-duration: .3s;
    opacity: .8;
    user-select: none;
}
.button:hover {
    opacity: 1;
}
#confirm, #thanks {
    display: none;
    font-weight: 600;
    text-align: center;
}
.error {
    border-color: red;
    background-color: rgba(255,0,0,.1);
}
.loading {
    opacity: .5;
    pointer-events: none;
}
#back {
    display: none;
    margin: 20px 0 0 0;
    justify-content: center;
}