@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #277BC0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}
.container{
    background-color: #fff;
    margin:20px;
    height: 300px;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 5px 5px 15px rgb(0, 0, 0,0.2);
    transition: height 0.2s ease;
}
.container.active{
    height:540px;

}
h1{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 30px;
}
label{
    font-weight: 300;
    color: rgb(120, 120, 120);
    font-size: 18px;
}
input{
    width: 100%;
    height: 50px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}
input:focus{
    outline: none;
}
.btn{
    margin-top: 20px;
    width: 100%;
    height: 50px;
    background-color: #FFB200;
    border-radius: 10px;
    border: 0;
}
.container .codeArea{
    display: flex;
    opacity: 0;
    pointer-events: none;
    margin-top: 20px;
    width: 100%;
    height: 220px;
    border: 1px solid rgb(120, 120, 120);
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.container.active .codeArea{
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.5s 0.05s ease;
}