body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #0A1931; /* Dark navy text from your logo */
    text-align: center;
}

.container {
    padding: 20px;
}

.logo {
    max-width: 450px;
    margin-bottom: 40px;
}

.welcome-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 400px;
}

.email-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #005BEA, #00C6FF); /* Gradient from logo's blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0, 118, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 118, 255, 0.4);
}