@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Heebo', sans-serif;
}

input:focus-visible{
    outline: 0;
}

.main{
    background-image: linear-gradient( 109.6deg,  rgba(15,2,2,1) 11.2%, rgba(36,163,190,1) 91.1% );
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    display: block;
    text-align: center;
    color: antiquewhite;
    font-family: 'PT Sans Narrow', sans-serif;
}

.box{
    min-width: 400px;
    padding: 10px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 50%);
    background-image: linear-gradient(0deg,
    hsl(240deg 100% 20%) 0%,
    hsl(240deg 89% 18%) 11%,
    hsl(240deg 78% 16%) 22%,
    hsl(240deg 66% 14%) 33%,
    hsl(240deg 56% 12%) 44%,
    hsl(240deg 43% 10%) 56%,
    hsl(240deg 32% 7%) 67%,
    hsl(240deg 21% 5%) 78%,
    hsl(240deg 13% 3%) 89%,
    hsl(0deg 0% 1%) 100%);
    border-radius: 2px;
    margin-top: 10px;
}

#pass-box {
    width: 100%;
    display: block;
    background-color: white;
    font-size: 10px;
    padding: 10px;
    border-radius: 4px;
}

.row {
    width: 100%;
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    color: whitesmoke;
    font-size: 15px;
}

label {
    user-select: none;
}

#btn {
    width: 100%;
    font-size: 20px;
    outline: 0;
    border: 0;
    padding: 10px;
    background-color: #34495e;
    color: white;
    margin-top: 10px;
    border-radius: 5px;
}