.wpl-unlock-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 2em;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    margin: 2em auto;
    font-family: Arial, sans-serif;
    color: #333;
}

.wpl-unlock-form h3 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.wpl-unlock-form p {
    color: #666;
    margin-bottom: 1.5em;
}

.wpl-form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.wpl-form-group label {
    flex: 0 0 100px;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
}

.wpl-form-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    max-width: 250px;
}

.wpl-divider {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 2em 0;
}

.wpl-unlock-form button {
    padding: 10px 40px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.wpl-unlock-form button:hover {
    background-color: #005177;
}

#wpl-unlock-message {
    margin-top: 1em;
    font-size: 0.9em;
}