/* Style the wrapper itself */
.password-form-wrapper {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin: 50px auto;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style the heading within the wrapper */
.password-form-wrapper h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 10px;
}

/* Style the paragraph text */
.password-form-wrapper p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Style the password input field */
.password-form-wrapper form input[type="password"] {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    width: 80%;
    margin-top: 15px;
}

/* Style the submit button */
.password-form-wrapper form input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.password-form-wrapper form input[type="submit"]:hover {
    background-color: #005bb5;
}
.password-field-container {
    position: relative;
    display: inline-block;
}

.password-toggle-btn {
    position: absolute;
    right: 5px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #888;
}


