.content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.forgot-main {
    position: relative;
    width: 360px;
    margin: 0 auto 0 auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0px 1px 3px #ccc;
    border-radius: 10px;
}
h1 {
    display: flex;
    justify-content: center;
    font-family: var(--font-family-base-heading);
    color: var(--dark);
    font-size: 1.2rem;
}
h2 {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--font-family-base-heading);
    color: var(--text-colour);
    font-size: .9rem;
    font-weight: 400;
}
#forgot-header {
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}
.label {
    margin: 20px 0 10px 0;
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-color);
}
input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#forgot-buttons {
    display: flex;
    justify-content: space-between;
}
#forgot-buttons .button {
    width: 50%;
    margin: 0 5px;
    font-size: .8rem;
}
.confirm {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.confirm .button {
    font-size: .8rem;
}
.confirm-message {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--dark);
}
.error {
    border-color: red;
    background-color: rgba(255,0,0,.1);
}
.loading {
    opacity: .1;
    pointer-events: none;
}
#back {
    display: none;
    margin: 20px 0 0 0;
    justify-content: center;
}
.h-spinner {
    position: absolute;
    z-index: 100;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
}
.h-spinner img {
    width: 100%;
    height: 100%;
}
.reset-buttons {
    margin-top: 20px;
}