@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: aquamarine;
}
.wrapper{
    height: 200px;
    background: #fff;
    border-radius: .5rem;
    padding: 1rem;
    transition:  height .2s ease;
}
.wrapper.active{
    height: 450px;
}
header h1{
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
header p{
    margin-top: .5rem;
    font-size: .8rem;
    color: #474747;
}
.wrapper .form{
    margin-top: 1rem;
}
.form :where(input, button){
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 5px;
}
.form input{
    font-size: 15px;
    padding: 0 10px;
    border: 1px solid #999;
}
.form button{
    margin-top: 10px;
    cursor: pointer;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 550;
    letter-spacing: 1px;
    background: aquamarine;
    color: #474747;
}
.wrapper .qr-code{
    display: flex;
    padding: 33px 0;
    opacity: 0;
    pointer-events: none;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid #999;
    margin: 10px;
}
.wrapper.active .qr-code{
    opacity: 1;
    pointer-events: all;
    transition: opacity .5s 0.05s ease;
}