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

    background: #ea467b;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.wrapper{
    height: 260px;
    background: #fff;
    max-width: 410px;
    border-radius: 7px;
    padding: 16px 25px  0;
    transition: height 0.2s ease;
}
.wrapper.active{
    height: 530px;
}
header h1{
    font-size: 25px;
    font-weight: 500px;
    margin-top: 10px;
}
header p{
    margin-top: 5px;
    color:#474747;
    font-size: 16px;
}
.wrapper .form{
    margin: 20px 0 30px;    
}
.form :where(input, button){
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.form input{
    font-size: 18px;
    padding: 0 17px;
    border: 1px solid #999;
}
.form button{
    background: #ca387c;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    font-size: 17px;
}
.wrapper .qr-code{
    border: 1px solid #ccc;
    opacity: 0;
    pointer-events: none;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    
}
.wrapper.active .qr-code{
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s 0.05s ease;
}
