/*--------------------------------------------------------------------------------------------------------------------*/
/*  PasswordResetPage                                                                                                 */
/*--------------------------------------------------------------------------------------------------------------------*/
.password-reset {
    display: flex;
}
.password-reset .container {
    max-width: 560px;
    margin: auto;
}

.password-reset .content {
    display: flex;
    flex-direction: column;
    width: 560px;
    padding: 30px 30px;
    gap: 20px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    box-shadow: 0 4px 55px 0 rgba(0, 0, 0, 0.10);
}

.password-reset .logo {
    padding-top: 60px;
    padding-bottom: 20px;
}

.password-reset .logo img {
    display: block;
    width: 300px;
    margin: auto;
}

.password-reset .error {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: red;
}

.password-reset .title {
    text-align: center;
    margin-top: 20px;
    color: var(--theme-color);
    font-size: 18px;
    line-height: 22px;
}

.password-reset .fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.password-reset .actions {
    margin-top: 20px;
}

.password-reset .actions a {
    padding: 20px 60px;
}

.password-reset .actions a:hover {
    color: white;
    background: var(--button-hover-background);
}

.password-reset .requirements {
    margin-top: 20px;
    margin-bottom: 20px;
}

.password-reset .copyright {
    text-align: center;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #686868;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*  ForgottenLoginPage                                                                                                */
/*--------------------------------------------------------------------------------------------------------------------*/
.password-forgotten {
    display: flex;
}
.password-forgotten .container {
    max-width: 560px;
    margin: auto;
}

.password-forgotten .content {
    display: flex;
    flex-direction: column;
    width: 560px;
    padding: 30px 30px;
    gap: 20px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    box-shadow: 0 4px 55px 0 rgba(0, 0, 0, 0.10);
}

.password-forgotten .logo {
    padding-top: 60px;
    padding-bottom: 20px;
    text-align: center;
}

.password-forgotten .logo img {
    display: block;
    width: 300px;
    margin: auto;
}

.password-forgotten .logo .title {
    margin-top: 20px;
    color: var(--theme-color);
    font-size: 18px;
    line-height: 22px;
}

.password-forgotten .copyright {
    text-align: center;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #686868;
}

.password-forgotten .back {
    text-align: center;
}

.password-forgotten label {
    color: rgba(26, 28, 30, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: justify;
}

.password-forgotten .input-field {
    margin-top: 20px;
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
}

.password-forgotten .input-field input {
    height: 40px;
    margin-right: 5px;
}

.password-forgotten .input-field .submit {
    text-align: center;
    background-color: var(--theme-color);
    color: white;
    padding: 0;
    height: 40px;
}

.password-forgotten .input-field .submit span {
    font-size: 14px;
    padding: 8px;
    vertical-align: middle;
    display: inline-block;
}

.password-forgotten .input-field .submit:hover {
    cursor: pointer;
    background: var(--button-hover-background)
}

.password-forgotten .separator {
    border-bottom: 1px solid #ccc;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*  password requirements                                                                                             */
/*--------------------------------------------------------------------------------------------------------------------*/

.password-requirements {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-self: stretch;
}

.password-requirements label {
    color: rgba(26, 28, 30, 0.50);
    font-size: 13px !important;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: justify;
    padding-left: 10px;
}

.password-requirements span {
    margin-bottom: 5px;
    font-size: 14px;
    color: #5c5c5c;
    font-style: normal;
}

.password-requirements .error {
    color: red !important;
}

.password-requirements .verified {
    color: #6a9b60;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*  PasswordRenewalPanel                                                                                                  */
/*--------------------------------------------------------------------------------------------------------------------*/

.password-renewal {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    width: clamp(1024px, 100%, 100%);
}

.password-renewal .container {
    display: flex;
    flex-direction: column;
    width: 480px;
    padding: 30px 40px;
    gap: 20px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    box-shadow: 0 4px 55px 0 rgba(0, 0, 0, 0.10);
}

.password-renewal .top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
}

.password-renewal .top .title {
    color: #1E1E1E;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.password-renewal .top .alert {
    color: rgba(26, 28, 30, 0.50);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: #ffe9e9;
    padding: 10px;
}

.password-renewal form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: stretch;
}

.password-renewal .fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: stretch;
}

.password-renewal .error {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    margin-top: 5px;
    color: red;
}