h1 {
    color: #fdb4eb;
    font-size: 2em;
    margin-bottom: 1em;
}

input[type="text"] {
    width: 80%;
    max-width: 400px;
    padding: 0.8em;
    border: 2px solid #fdb4eb;
    border-radius: 10px;
    font-size: 1em;
    margin-bottom: 1em;
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:focus {
    border-color: #e38cd1;
}

button {
    background-color: #fdb4eb;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.8em 1.5em;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #e38cd1;
}

#qrcode {
    width: fit-content;
    margin: 0 auto;
    margin-top: 2em;
    padding: 1em;
    box-shadow: #e38cd1 0px 0px 10px;
    background-color: white;
}
