*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cambria";
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    max-width: 1200px;
    width: 100%;
    min-width: 320px;
    height: auto;
    background-color: rgb(237, 246, 255);
    padding: 10px;
    border-radius: 10px;
    margin: 70px 50px;
    box-shadow: 5px 5px 10px 5px rgb(236, 236, 236);
    border: 2px solid blue;
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.header img{
    width: 50px;
    height: auto;
    margin: 10px;
}

.header h2{
    font-size: 35px;
    color: rgb(0, 85, 255);
}

.middle-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.middle-section h2{
    font-size: 32px;
    text-align: center;
    padding: 5px 50px;
    border: 2px solid rgb(182, 179, 179);
    border-radius: 20px;
    background-color: white;
    color: rgb(192, 192, 192);
}

.middle-section .option-section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px 0;
}

.option-section .options{
    display: flex;
    align-items: center;
    gap: 5px;
}

.options .passwordOption{
    width: 20px;
    height: 20px;
    transition: all .3s;
    cursor: pointer;
}

.passwordOption:active{
    transform: scale(.8);
}

.options label{
    font-size: 20px;
    color: rgb(7, 177, 249);
}

.submitsec{
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
}

.submitsec #pwbtn{
    padding: 10px 0px;
    width: 300px;
    font-size: 20px;
    color: white;
    outline: none;
    background-color: rgb(16, 112, 245);
    border-radius: 10px;
    border: 2px solid white;
    cursor: pointer;
    transition: all .3s;
}

#pwbtn:hover{
    background-color: rgb(9, 85, 191);
}

#pwbtn:active{
    transform: scale(.95);
}

.password-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.password-sec h2{
    font-size: 30px;
    color: rgb(133, 133, 133);
}

.passwordpart{
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid blue;
    border-radius: 10px;
    padding: 15px;
    background-color: white;
    font-size: 25px;
    font-weight: 700;
    color: rgb(56, 126, 247);
}

.passwordpart button{
    border: none;
    background-color: white;
    width: 10%;
    cursor: pointer;
    transition:all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.passwordpart img{
    width: 25px;
    height: auto;
    margin-right: 10px;
}

.passwordpart button:active{
    transform: scale(.8);
}

.password-sec .password-output{
    width: 90%;
    padding: 0 15px;
    text-align: center;
}


@media (max-width:550px){

    .container{
        margin: 10px;
    }

    .header img{
        height: auto;
        width: 40px;
    }

    .header h2{
        font-size: 25px;
    }

    .middle-section{
        margin: 10px 0;
    }

    .middle-section h2{
        font-size: 25px;
    }

    .middle-section .option-section{
        flex-direction: column;
        gap: 20px;
        padding: 35px 0;
    }

    .password-sec{
        padding: 20px 0;

    }

    .password-sec h2{
        font-size: 25px;
    }

    .password-sec .passwordpart{
        width: 250px;
        padding: 10px;
        font-size: 20px;
    }

}
