/*
Theme Name:   Hello Elementor Child
Theme URI:    https://elementor.com/hello-theme/
Description:  Child theme for the Hello Elementor theme
Author:       Your Name
Author URI:   https://yoursite.com
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v3 or later
License URI:  https://www.gnu.org/licenses/gpl-3.0.html
Text Domain:  hello-elementor-child
*/

/* Add your custom styles below this line */

/* Password Protected Form Styles */
.custom-password-form-wrap {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-password-form {
    background: #f4f4f4;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.custom-password-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.custom-password-form p {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

.custom-password-form .post-password-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0px auto;
}

.custom-password-form label {
    display: block;
    text-align: left;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.custom-password-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.custom-password-form input[type="password"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.custom-password-form input[type="submit"] {
    background: #2C4381;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.custom-password-form input[type="submit"]:hover {
    background: black;
    color: white;
    box-shadow: none;
}

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