/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap'); */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color:  #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Roboto Condensed', sans-serif;
}

.wrapper{
    background-color:#fff;
    border-radius: 7px;
    width: 380px;
    height: 230px;
    padding: 15px 25px;
    transition: height 0.2s ease;
}

.wrapper.active{
    height: 470px;
}
header h1{
    font-size: 21px;
    font-weight: 500;
}
header p{
    margin-top: 5px;
    color: #474747;
    font-size: 16px;
}
.wrapper .form{
    margin: 20px 0 30px;
    
}
.form :where(input, button){
    border: none;
    outline: none;
    border-radius: 5px;
    width: 100%;
    height: 50px;

    font-size: 16px;
    padding: 0 20px 0 15px;
}
.form input{
    border:1px solid #999;
}
.form button{
    background-color: #3498db;
    margin-top: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 550;
}
.wrapper .qr-code{
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;    
    padding: 23px 0;
    opacity: 0;
    pointer-events: none;

}

.wrapper.active .qr-code{
    opacity: 1;
    pointer-events: auto;
    transition: all 0.5s  ease;
}