/*
Theme Name: FQ-child
Author: Flying Queen
Description: Beautiful, flexible, cool
Version: 1.0
Template: Divi

This is the child theme for Divi theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/


.mobile_menu_bar:before, .mobile_menu_bar:after, #top-menu li.current-menu-ancestor>a, #top-menu li.current-menu-item>a {
    color: #954834;
}

/* Full height pagina */


#main-content {
    flex: 1;
    display: flex;
}

article.post-password-required {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;

    background:
        linear-gradient(
            135deg,
            #f7f4ef 0%,
            #ffffff 50%,
            #f7f4ef 100%
        );
}

/* Card */
.et_password_protected_form {
    width: 100%;
    max-width: 500px;

    background: rgba(255,255,255,0.9);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(0,0,0,0.06);

    border-radius: 28px;

    padding: 50px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06),
        0 30px 60px rgba(0,0,0,0.08);

    text-align: center;
}

/* Titel */
.et_password_protected_form h1 {
    font-size: 2rem;
    font-weight: 700;

    margin-bottom: 15px;

    color: #222;
}

/* Tekst */
.et_password_protected_form p {
    color: #666;
    line-height: 1.7;
}

/* Label verbergen */
.et_password_protected_form label {
    display: none;
}

/* Input */
.et_password_protected_form input[type=password] {
    width: 100%;

    height: 58px;

    border-radius: 14px;
    border: 1px solid #e5e5e5;

    padding: 0 20px;

    font-size: 16px;

    margin-top: 20px;
    margin-bottom: 20px;

    background: #954834;
	color:white;

    transition: .3s ease;
}

.et_password_protected_form input[type=password]:focus {
    outline: none;

    border-color: #c7a56a;

    box-shadow:
        0 0 0 4px rgba(199,165,106,.15);
}

/* Button */
.et_password_protected_form .et_pb_button,
.et_password_protected_form button {
    width: 100%;

    height: 58px;

    border: 0;
    border-radius: 14px;

    background: #c7a56a;

    color: white;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.et_password_protected_form .et_pb_button:hover,
.et_password_protected_form button:hover {
    transform: translateY(-2px);

    background: #b28f54;

    box-shadow:
        0 10px 20px rgba(199,165,106,.25);
}

/* Icon boven titel */
.et_password_protected_form h1:before {
    content: "🔐";

    display: block;

    font-size: 48px;

    margin-bottom: 20px;
}

/* Mobiel */
@media (max-width: 767px) {

    .et_password_protected_form {
        padding: 35px 25px;
    }

    .et_password_protected_form h1 {
        font-size: 1.6rem;
    }

}