/* Page de saisie du mot de passe d'un contenu protégé (CRSW-223) */

.password-protected-page {
    padding: 180px 20px 100px;
    min-height: 60vh;
    display: flex;
    justify-content: center;
}

.password-protected-wrapper {
    width: 100%;
    max-width: 720px;
}

.password-protected-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.password-content-block-container {
    margin-bottom: 40px;
}

.password-content-block-container h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
}

.password-content-block-container h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 24px;
}

.password-content-block-container .content-block-items-wrapper {
    display: flex;
    gap: 30px;
}

.password-content-block-container .content-block-item {
    flex: 1 1 0;
}

.password-protected-page .separator {
    height: 1px;
    background-color: #E5E5E5;
    margin-bottom: 40px;
}

.password-password-input-container h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.password-password-input-container .form-wrapper {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.password-password-input-container .password-input {
    flex: 1 1 auto;
    padding: 15px 20px;
    border: 1.5px solid #E5E5E5;
    border-radius: 10px;
    font-size: 16px;
    line-height: 19px;
    background-color: #FFFFFF;
}

.password-password-input-container .password-input:focus {
    border-color: #2D6DBB;
}

.password-password-input-container .password-error {
    color: #C0392B;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .password-protected-page {
        padding: 140px 20px 60px;
    }

    .password-protected-title {
        font-size: 24px;
        line-height: 32px;
    }

    .password-content-block-container .content-block-items-wrapper,
    .password-password-input-container .form-wrapper {
        flex-direction: column;
    }
}