@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body{
   
    height: 100vh;
    margin: 0;
    background-color: rgb(228, 228, 228);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Quicksand", sans-serif;

}
.container{
    background-color: white;
    padding : 30px;
    border-radius:10px ;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    width:350px;
}
h2{
    color: #333;
    margin-bottom: 30px;
}
.password-container{
    position: relative;
    margin-bottom: 30px;
}
input{
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
input:focus{
    outline: none;
    border-color: #6b5ce7;
}
.toggle-password{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color:#666
}
.strength-meter{
    height: 10px;
    background-color: #e0e0e0;
    border-radius:5px;
    margin: 15px 0;
    overflow: hidden;
}
.strength-meter-fill{
    height: 100%;
    width: 0;
    border-radius: 5px;
    transition:width 0.3s, background-color 0.3s;   
}
.strength-text{
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.requirements{
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.requirement{
    margin: 6px 0;
    display: flex;
    align-items:center ;
}
.requirement span{
    color:#666;
    margin-left: 8px;
}
.x-icon{
    color: red;
    font-weight: bold;
}