body {
    font-family: "Lato", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    background: #f0f0f0;
    margin: 0;
}

iframe {
    border-radius: 24px;
}

p {
    margin: 0;
}

.card {
    padding: 32px;
    width: 100vw;
    max-width: 400px;
    margin: 20px auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.4s ease-out forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card .card-body {
    width: 90%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card .redirect-button {
    font-family: "Lato", sans-serif;
    cursor: pointer;
    background: #9ddd3e;
    color: black;
    padding: 16px 32px;
    border: none;
    font-size: 16px;
    border-radius: 12px;
    width: 90%;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}

.card .redirect-button p.title {
    margin: 0;
    font-weight: bold;
}

.card .redirect-button p.subtitle {
    margin: 0;
    color: #333;
}

.card .redirect-button:hover {
    background: #4b5563;
    color: white;
}

.card .redirect-button:hover p.subtitle {
    color: white;
}

.card iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.content-container {
    min-height: 212px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.flex-col-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.card-body p {
    margin: 6px 12px;
}

.text {
    text-align: left;
    color: #666;
    font-size: 12px;
}

.text-md {
    color: #424242;
    font-size: 14px;
}

.text-lg {
    color: #424242;
    font-size: 16px;
}

.text-center {
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    box-sizing: border-box;
    position: relative;
    padding: 24px 24px;
    max-width: 400px;
    background: #f8f8f8;
    height: 360px;
}

.card-bg {
    content: '';
    width: 800%;
    height: 800%;
    position: absolute;
    left: 50%;
    top: 438%;
    border-radius: 100%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
}

#logo {
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: flex-start;
}
