body {
    font-family: 'Arial', sans-serif;
    background: #6a11cb;
    background: -webkit-linear-gradient(to right, #1525c0, #6a11cb);
    background: linear-gradient(to right, #1525c0, #6a11cb);
    color: white;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-container {
    text-align: center;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

h1 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.qrCode-wrapper {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#contactForm {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

#contactForm input, #contactForm button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#contactForm button {
    background: #1525c0;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#contactForm button:hover {
    background: #6a11cb;
}

#contactForm input::placeholder {
    color: #fff;
}

.card {
    perspective: 1000px;
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background: #ddd;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: rotateX(20deg);
    transition: transform 0.5s;
}

.card:hover {
    transform: rotateX(0deg);
}

.card:after {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(40deg, #1525c0, #6a11cb);
    border-radius: 10px;
    z-index: -1;
    opacity: .7;
}

.qrCode-wrapper {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.qrCode-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(40deg, #1525c0, #6a11cb);
    border-radius: 10px;
    z-index: -1;
    opacity: .7;
}

#qrCode {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

#info {
    margin-top: 20px;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}
