@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

input:focus-visible {
    outline: 0;
}

.main {
    background-image: radial-gradient(circle, #5c0067 0%, #00d4ff 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    min-width: 22rem;
    padding: 10px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 50%);
    border-radius: 2px;
    margin-top: 10px;
}

p{
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center; 
    padding-bottom: 0.50rem;
}

#pass-box {
    width: 100%;
    display: block;
    background-color: white;
    font-size: 30px;
    padding: 10px;
    border-radius: 4px;
}

.row {
    width: 100%;
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    color: white;
    font-size: 20px;
}

label {
    user-select: none;
}

#btn {
    width: 100%;
    font-size: 20px;
    outline: 0;
    border: 0;
    padding: 10px;
    background-image: linear-gradient(to right, #84fab0 0%, #8fd3f4 51%, #84fab0 100%);
    color: rgb(0, 0, 0);
    margin-top: 10px;
    border-radius: 5px;
}
