/* wp-content/plugins/site-wide-password-protect/css/style.css */

body#swpp-main,
.page-template-password  {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f2f5; /* Kicsit modernebb háttér */
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

#wpcf7-f5070-p5071-o1 {
	text-align:center;
}

#wpcf7-f5070-p5071-o1 textarea{
    width: 400px;
    border: 1px solid #373737;
    border-radius: 5px;
    padding: 3px 8px;
}

#wpcf7-f5070-p5071-o1 .wpcf7-spinner {
	display:none;
}

#wpcf7-f5070-p5071-o1 .wpcf7-submit {
	cursor:pointer;
}

.swpp-container a {
	text-decoration:underline;
}

.swpp-container .contactlinks {
	font-size:14px;
}

.swpp-container .contactlinks a {
	text-decoration:none;
}


.swpp-container,
.page-template-password .wp-site-blocks {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Erősebb árnyék */
    text-align: center;
    max-width: 550px; /* Szélesebb konténer */
    width: 90%;
    box-sizing: border-box; /* Padding bele a szélességbe */
}

.swpp-logo {
    margin-bottom: 40px;
}

.swpp-logo img {
	width:100%;
    max-width: 275px; /* Nagyobb logó */
	height: auto;
    display: block; /* Középre igazításhoz */
    margin: 0 auto;
}

.swpp-logo h1 {
    font-size: 2.5em; /* Vagy amilyen méretet szeretnél */
    color: #333;
    margin: 0;
}

.swpp-intro {
    font-size: 1.3em; /* Nagyobb betűméret */
    color: #444;
    margin-bottom: 35px;
    line-height: 1.6;
}

.swpp-error-message {
    color: #e74c3c;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 1.1em;
}

.swpp-form-group {
    margin-bottom: 25px;
}

.swpp-form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600; /* Kicsit vastagabb */
    color: #333;
    font-size: 1.05em;
}

.swpp-form-group input[type="password"] {
    width: calc(100% - 24px); /* A padding miatt */
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.1em;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08); /* Kis belső árnyék */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.swpp-form-group input[type="password"]:focus {
    border-color: #007bff; /* Kék keret fókusz esetén */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.swpp-form-group button {
    background-color: #007bff; /* Kék gomb */
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.swpp-form-group button:hover {
    background-color: #0056b3;
    transform: translateY(-2px); /* Enyhe felugró effekt */
}

.swpp-form-group button:active {
    transform: translateY(0);
}

.swpp-closing-text {
    font-size: 1em;
    color: #666;
    margin-top: 40px;
    line-height: 1.5;
}