* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right bottom, #ffa585, #45c5d8);
    color: #fff;
}

.container {
    background-color: transparent;
    border: 2px solid #4343;
    display: flex;
    gap: 10px;
    flex-direction: column;
    border-radius: 10px;
    font-weight: 700;
    padding: 28px 32px;
    box-shadow: 8px 8px 4px #909090, 8px 8px 0px #575757;
}

.container input[type="text"]:first-of-type {
    background-color: #fff;
    outline: none;
    border: none;
    padding: 10px;
    min-width: 200px;
    max-width: 314px;
    border-radius: 4px;
    font-size: 20px;
    color: #777;
    text-overflow: ellipsis;
}

.input span {
    margin-left: -30px;
    cursor: pointer;
}

.row {
    display: flex;

}

span {
    font-size: 20px;
    font-weight: 700;
}

.row p,
.row label {
    flex: 1;
    font-size: 18px;
}

.row input[type="checkbox"] {
    width: 20px;
    height: 20px;

}

.genBtn {
    outline: none;
    border: 0;
    padding: 12px 24px;
    color: #fff;
    background-color: #2c619e;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;

    &:hover {
        background-color: #0066ff;
    }
}