* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #ffa585, #c01919);
}

.container {
    border: 2px solid black;
    border-radius: 1rem;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: 8px 4px 8px;
}
.inputBox{
    position:relative;
}
.container h1 {
    font-size: 2.9rem;
}

.passBox {
    outline: none;
    border: none;
    height: 50px;
    width: 400px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    background-color:white;
}
.inputBox span{
    position:absolute;
    top:28px;
    right:6px;
    cursor:pointer;
    font-size:2rem;
}
.row{
    display:flex;
    margin-top:2rem;
    font-size: 1.4rem;;
    font-weight: 700;
}
.row p,.row label{
    flex-basis: 100%;
}
.row input[type="checkbox"]{
    width:20px;
    height:20px;
}
.generateBtn{
    border:none;
    outline:none;
    background-color: rgb(217, 209, 209);
    padding:1rem;
    margin-top:1rem;
    font-weight: 800;
    font-size:1.2rem;
    transition:  all 1s ease-in-out;
}
.generateBtn:hover{
    background-color:rgb(8, 8, 216);
    color:white;
}
.class{
    font-size:10rem;
    color:black;
}

