/* made by Gaurav Bharane
 /* ------------------------------*/ 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right bottom,#c24747, #3575cf);
}
/* main container div */
.container{
    border: 0.5px solid #fff;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    background-color: rgb(230, 230, 230);
    /* box-shadow: 8px 8px 4px #909090,8px 8px 0px #575757; */
}
.container h1{
    font-size: 1.4rem;
    margin-block: 8px ;
    text-align: center;
}
.inputbox{
    position: relative;
}
.inputbox span{
    position: absolute;
    top: 9px;
    right: 1px;
}
.copybtn{
    border:none rgb(62, 62, 62) 2px ;
    font-size: 15px;
    padding: 10px 5px 14px 5px;
    background-color: #2c619c;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}
.passbox{
    background-color: #fff;
    border: none;
    outline: none;
    padding: 10px;
    width: 300px;
    border-radius: 4px;
    font-size: 20px;
    margin-block:8px ;
}
.row{
    display: flex;
    margin-block: 8px;
}
.row p ,.row label{
    flex-basis: 100%;
    font-size: 18px;
}
.row input[type="checkbox"]{
    width: 20px;
    height: 20px;
}
.genbtn{
    border: none;
    outline: none;
    padding: 12px 24px;
    background-color: #2c619c;
    font-size: 18px;
    font-weight: 700;
    margin-block: 8px;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
}
.genbtn:hover{
    background-color: #131d76;
}
.author{
    position: absolute;
    bottom: 8%;
    color: #fff;
}
.author h1{
    font-family:Arial, Helvetica, sans-serif;
    color: #fff;
}