/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* Add some styling for the password protected pages. I want the content the be in the middle of the page, and for it to have some padding */
main.post-password-required {
    padding: 75px;
    text-align: center;
}
/* 50px for tablet, 50px 20px for mobile */
@media (max-width: 1024px) {
    main.post-password-required {
        padding: 50px;
    }
}
@media (max-width: 600px) {
    main.post-password-required {
        padding: 50px 20px;
    }
}
main.post-password-required .entry-title {
    margin: 0;
    margin-bottom: .2em;
    max-width: 100%;
}
form.post-password-form {
    text-align: left;
    width: 390px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;

    margin-top: 80px;
}