/*
Theme Name: NTS
Version: 1.0
*/


/* Style the password protected page form */

.post-password-form {
    background: #f5f5f5;
    padding: 2rem;
    border: 2px solid #25303B;
    max-width: 800px;
    margin: 4rem auto;
    border-radius: 8px;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Add responsive margins on smaller screens */
@media (max-width: 600px) {
    .post-password-form {
        margin: 2rem;
        padding: 1rem;
    }
}

.post-password-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.post-password-form input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.post-password-form input[type="submit"] {
    background: #25303B !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.post-password-form input[type="submit"]:hover {
    background: #00AFD7 !important;
    color: #25303B !important;
}
