
* {
    box-sizing: border-box;
}

.resetPasswordConfirmPage {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 40px 20px;
}

.resetPasswordConfirmPage .contentarea {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

#resetPasswordConfirmationContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    padding: 0;
}

.resetPasswordConfirmTitle {
    font-family: 'Effralight', sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0;
    word-break: break-word;
}

.resetPasswordConfirmSubtitle {
    font-family: 'Effralight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    padding: 0;
    word-break: break-word;
}

.resetPasswordConfirmSubtitle.hidden {
    display: none !important;
}

.resetPasswordConfirmActions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
}

.resetPasswordConfirmButton {
    background-color: #332892;
    color: #ffffff;
    font-family: 'Effra', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    min-width: 140px;
}

.resetPasswordConfirmButton:hover {
    background-color: #2a226f;
}

.resetPasswordConfirmButton:active {
    background-color: #2a226f;
}

.hidden {
    display: none !important;
}

@media screen and (max-width: 414px) {
    .resetPasswordConfirmPage {
        padding: 20px 16px;
    }

    #resetPasswordConfirmationContainer {
        gap: 12px;
    }

    .resetPasswordConfirmTitle {
        font-size: 32px;
    }

    .resetPasswordConfirmButton {
        padding: 10px 30px;
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1279px) {
    .resetPasswordConfirmPage {
        padding: 60px 40px;
    }
}

@media screen and (min-width: 1920px) {
    .resetPasswordConfirmPage {
        padding: 80px 40px;
    }
}

@media print {
    .resetPasswordConfirmPage {
        background-color: #ffffff;
    }
}
