*{
    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 bottom right , hsl(50, 83%, 49%),#c37144);
    color: #ffffff;
}


.container{
    border: 0.5px solid white;
    border-radius:10px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    box-shadow: 4px 4px 2px #909090, 4px 4px 0px; 
}

.container h1{
    font-size: 1.4rem;
    margin-block: 8px;  
}
.inputBox{ 
    position: relative;
}

.inputBox span{
    position: absolute;
    top: 16px;
    right: 6px;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
}
.passBox{
    background-color: #fff;
    border: none;
    outline: none;
    padding: 10px;
    width: 300px;
    border-radius: 4px;
    font-size: 20px;
    margin-block: 8px;
    text-overflow: ellipsis;

}
.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;
    background: #909090;
    border-radius: 4px;
    padding: 8px 12px; 
    color: #fff; 
    font-size: medium;
    margin-block: 8px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

    .genBtn:hover{
        background-color: rgb(89, 57, 15);


    }