@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'roboto',sans-serif;
}
body{
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background:grey;
}
.wrapper{
    height: 265px;
    background: white;
    max-width: 410px;
    border-radius: 7px;
    padding: 20px 25px;
    transition: height 0.3s ease;
}
.wrapper.active{
    height: 530px;
}
header h1{
    font-size: 25px;
    font-weight: 500;
}
header p{
    margin-top: 5px;
    color: grey;
    font-size: 15px;
}
.wrapper .form{
    margin: 20px 0 25px;
}
.form :where(input, button){
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 5px;
}
.form input{
    font-size: 15px;
    padding: 2px 15px;
    border: 1px solid gray;
}
.form button{
    color: white;
    cursor: pointer;
    margin-top: 15px;
    font-size: 15px;
    background: grey;
}
.wrapper .qr-code{
    display: flex;
    padding: 33px 0;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
    opacity: 0;
    pointer-events: none;
}
.wrapper.active .qr-code{
    opacity:1;
    pointer-events: auto;
    transition: opacity 0.5s 0.05s ease;
}
.qr-code img{
    width: 170px;
}