body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.welcome {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.welcome__card {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    color: #ffffff;
    max-width: 440px;
    width: 100%;
}

.welcome__logo {
    width: 120px;
    height: 120px;
}

.welcome__title {
    font-size: 2rem;
    margin: 1rem 0;
}

.welcome__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.welcome__button {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background-color: #ffffff;
    color: #5b35a0;
    font-weight: 700;
}

.welcome__button:focus,
.welcome__button:hover {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}
