@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 100vh;
    background: radial-gradient(circle, #4E60FD 0%, #4E60FD 100%);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 28px;
}

#emailButton {
    padding: 6px 18px;
    font-size: 14px;
    font-variation-settings: 'opsz' 20, 'wght' 600;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1em;
    color: #4E60FD;
    background: #fff;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', Arial, sans-serif;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-top: 0;
}

#emailButton:hover {
    background: #e6e6fa;
    color: #4E60FD;
}

@media (max-width: 768px) {
    .logo {
        max-width: 180px;
        margin-bottom: 22px;
    }
    #emailButton {
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .container {
        min-height: 100vh;
        justify-content: center;
    }
    .logo {
        max-width: 220px;
        width: 90vw;
        margin-bottom: 24px;
    }
    #emailButton {
        font-size: 16px;
        padding: 10px 28px;
        border-radius: 24px;
    }
}