* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


h1 {
    color: #242424;
    /* border-bottom: 1px solid blue; */
    margin: 50px auto;
}


body {
    height: 100%;
    width: 100%;
    background-image: url('/paper-texture (1).jpg');
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.container {
    border: 1px solid #e4e4e4;
    width: 400px;
    padding: 25px 35px;
    position: absolute;
    top: 20%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 5px 5px 0px 0px #bcbcbc;

}

label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}


input {
    width: 100%;
    height: 50px;
    border-radius: 1px solid #494eea;
    outline: 0;
    padding: 10px;
    margin: 10px 0;
    border-color: #f1f1f1;
    border-radius: 5px;
    font-size: 16px;
}

#qrContainer {
    width:  250px;
    border-radius: 5px;
    padding: 10px;
    margin: 10px auto;
    /* max-height: 0; */
}

#qrContainer.img-show {
    border: 1px solid #bababa;
}


#qrContainer img{
    max-width: 100%;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px #bababa;
}


.btn {
    width: 100%;
    height: 50px;
    background: #494eea;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    margin: 15px 0;
}

a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 0;
}

a.download-active {
    max-height: 60px;
}