/* css/cpe-style.css */
body{background-color:#333;}
.pdf-password-form {
    margin: 50px auto;
    text-align: center;
    max-width: 400px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.pdf-password-form h2 {
    margin-bottom: 20px;
    font-size: 1em;
    color: #333;
}

.pdf-password-form input[type="password"] {
    width: 80%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

.pdf-password-form input[type="password"]:focus {
    border-color: #0073e6;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 115, 230, 0.3);
}

.pdf-password-form input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 2em;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.pdf-password-form input[type="submit"]:hover {
    background-color: #005bb5;
    transform: scale(1.05);
}
