::-webkit-input-placeholder {
    /* Edge */
    color: #bbbbbb;
    font-size: 15px;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbbbbb;
    font-size: 15px;
}

::placeholder {
    color: #bbbbbb;
    font-size: 15px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    max-height: 100vh;
    overflow: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: #222;
    font-weight: 600;
}

input {
    padding: 8px 10px;
    background-color: transparent;
    color: #4a4a4a;
    border: solid 1px #dfdfdf;
    width: 100%;
    font-size: 16px;
    outline: none;
    transition: all ease-in-out 0.4s;
    border-radius: 10px;
}

input:focus {
    border-bottom: solid 2px #f58220;
}

.qr-section {
    padding: 100px 0;
    display: flex;
    align-items: center;
    height: 100vh;
}

.card {
    border-radius: 15px;
}

.qr-btn {
    background-color: #f58220;
    padding: 8px 25px;
    color: white;
    cursor: pointer;
    border: 0px;
    border-radius: 30px;
    transition: all ease-in-out 0.4s;
}

.qr-btn:hover {
    background-color: #222;
}

#qr-result {
    font-size: 17px;
}

#download {
    font-weight: 600;
    border: 2px solid #f58220;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #4a4a4a;
    text-decoration: none;
}

.logo {
    max-width: 220px;
    margin-bottom: 35px;
}

@media only screen and (max-width: 991px){
    body {
        overflow: auto;
    }
    .qr-section {
        padding: 40px 0;
        height: auto;
    }
}
