

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
      
}

body {
    background: linear-gradient(to right bottom, #dd50ca, rgba(51, 211, 208, 0.586));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    color: white;
}

.container{

    border: 1px solid #dddd;
    padding: 20px 34px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: 8px 8px 16px rgba(134, 27, 27, 0.2);
}

.passwordBlock span{

    position: absolute;
    margin-left: -30px;
    margin-top: 25px;
    cursor: pointer;
}

.passBox{
    width: 300px;
    border: none;
    border-color: white;
    outline: none;
    border-radius: 4px;
    margin-block: 20px;
    font-size: 30px;
    color: white;
}

.row{
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    margin-block: 8px;
}
.genBtn{
    margin-top: 20px;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: rgba(28, 128, 234, 0.71);
    color: white;
    transition: background-color 0.3s ease;
}   



.genBtn:hover{
    background-color: rgba(68, 173, 226, 0.578);
}

.row input[type="checkbox"]{
    width: 20px;
    height: 20px;
    cursor: pointer;
}