/*!
Theme Name: Blocksy
Theme URI: https://creativethemes.com/blocksy/
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
Version: 2.1.9
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Copyright: (c) 2019 CreativeThemes.
Requires at least: 6.5
Requires PHP: 7.0
Tested up to: 6.8
Text Domain: blocksy
Blocksy Minimum Companion Version: 2.0.74-beta1
Tags: accessibility-ready, blog, block-patterns, e-commerce, wide-blocks, block-styles, grid-layout, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, translation-ready, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments
*/

.page-id-1213 .entry-content {
  margin-top: 120px;
}

/* Zorg dat label, input en knop netjes uitlijnen */
.post-password-form {
  max-width: 500px;
  margin-top: 120px; /* schuift het formulier naar beneden */
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  font-family: 'Roboto', Arial, sans-serif;
}

/* Label bovenaan */
.post-password-form label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  text-align: left;
  color: #444;
  cursor: default; /* voorkomt dat het een handje wordt */
}

/* Wrapper voor input en knop naast elkaar */
.post-password-form input[type="password"],
.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
}

/* Flexbox voor netjes uitlijnen */
.post-password-form {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.post-password-form .input-row {
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: stretch; /* maakt ze even hoog */
}

/* Wachtwoordveld neemt alle ruimte behalve knop */
.post-password-form input[type="password"] {
  flex: 1;
  padding: 14px;
  margin-top: 0; /* voor de zekerheid, geen extra ruimte erboven */
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 14px;  
  box-sizing: border-box;
}

/* Knop rechts */
.post-password-form input[type="submit"] {
 flex-shrink: 0;
  background: #0073aa;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 0 20px;        /* géén verticale padding */
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;    /* tekst centreren */
  justify-content: center;
}

.post-password-form input[type="submit"]:hover {
  background: #005f8d;
}
