.pst-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.pst-container h2 {
    text-align: center;
    font-size: 24px;
   
}

.pst-password-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pst-input {
    width: 85%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pst-show-password {
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pst-show-password:hover {
    background-color: #2980b9;
}

.pst-strength-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.pst-strength-bar span {
    display: block;
    height: 100%;
    float: left; /* Ensures the bar grows properly */
    transition: width 0.3s ease; /* Smooth animation for bar growth */
}


.pst-strength-text {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

.pst-tips {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
}

.pst-tips ul {
    list-style: none;
    padding: 0;
}

.pst-tips ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.pst-tips ul li span {
    color: #e74c3c;
}
