*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rowdies", sans-serif;
}

body{
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    display: flex;
    height: 100vh;
    justify-content: center;
}

.main-cont{
    width: 600px;
    height: fit-content;
    background: #fff;
    padding: 20px 30px;
    margin-top: 20px;
    border-radius: 13px;
    margin: 20px 8px 0;
}

.main-cont p{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 7px;
}

.search-cont{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

input{
    flex: 5;
    height: 50px;
    border: 1px solid #2e2e2e;
    outline: 0;
    padding: 10px;
    border-radius: 7px;
}

button{
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    background: #2e34d9;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 7px;
    cursor: pointer;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.qr-cont{
    width: 200px;
    border-radius: 7px;
    max-height: 300px;
    overflow: hidden;
    max-height: 0;
}

img#QRcode{
    width: 100%;
    padding: 10px;
}

.show-container{
    max-height: 300px;
    margin: 10px auto;
    border: 1px solid #2e2e2e;
    transition: 1s linear;
}