/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


form.post-password-form {
    margin: 150px 0 40px;
}
form.post-password-form {
    margin: 150px auto 40px;
    max-width: 420px;
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    font-family: inherit;
}

form.post-password-form p {
    margin: 0 0 20px;
    color: #444;
    font-size: 15px;
    display: block;
    line-height: 1.6;
}

form.post-password-form p:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

form.post-password-form label {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
}

form.post-password-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 8px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    outline: none;
}

form.post-password-form input[type="password"]:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

form.post-password-form input[type="submit"] {
    margin-top: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #C4A25F;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

form.post-password-form input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

form.post-password-form input[type="submit"]:active {
    transform: translateY(0);
}