/* Stylizacja dla sekcji zmiany hasła */
.tab-content form {
    max-width: 400px;
    margin: auto;
}

.tab-content form p {
    margin-bottom: 20px;
}

.tab-content form input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f8f8f8;
    font-size: 16px;
}

.tab-content form input[type="submit"] {
    background: #007aff;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.tab-content form input[type="submit"]:hover {
    background: #0051cc;
    box-shadow: 0 4px 15px rgba(0, 81, 204, 0.3);
}
