@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    max-width: 100vw;
    min-height: 100vh;
    background-image: url("bgimg.jpg");
    background-position: center;
    background-size: cover;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-Container {
    backdrop-filter: blur(30px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 50px 30px 50px;
    border: 2px solid #ccc;
    border-radius: 20px;
}
.headings{
    width: 100%;
}

.headings h1 {
    color: #FFB703;
    text-align: center;
    width: 100%;
}
.headings span{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.displayPassWord{
    display: flex;
    position: relative;
    width: 100%;
}
.displayPassWord span{
    position: absolute;
    right: 2%;
    top: 35%;
    cursor: pointer;
}
.displayPassWord #displayBox {
    width: 100%;
    padding: 10px 10px 10px 10px;
    margin-block: 1.5rem;
    border: none;
    outline: none;
    color: #fff;
    background-color: #219EBC;
    font-size: 1rem;
}

.rangeBox {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.rangeBox #rangeValue {
    width: 80%;
}

.rangeBox #rangeValueShow {
    color: #fff;
}

.conditions {
    width: 100%;
}

.conditions .row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-block: 1.5rem;
}

.conditions .row label {
    color: #fff;


}

.conditions .row input {
    width: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;

}
.generateButton{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 1.5rem;
}

.generateButton #generatePass{
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    border: none;
    font-size: 1rem;
    background-color: #FFB703;
    color: #000000;
}


@media (max-width:450px) {
    .headings h1{
        font-size: 1.8rem;
    }
    
}
@media (max-width:400px) {
    .main-Container {
        padding: 20px 20px 30px 20px;
    }
    
}
@media (max-width:330px) {

    .conditions .row label {
    width: 70%;
    
    }
    
    .conditions .row input {
        width: 1.3rem;
    
    }  
    .container {
        height: auto;
    }
}