/* Reset default margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Glassmorphism card effect */
.container {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 550px;
    width: 90%;
}

.icon {
    font-size: 65px;
    margin-bottom: 20px;
    /* Adds a gentle floating effect */
    animation: float 3s infinite ease-in-out;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

p {
    font-size: 1.1rem;
    color: #b0b0c0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* New styling for the email pause notice */
.email-notice {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #4da8da;
    font-size: 0.95rem;
    color: #d1d1e0;
    text-align: left;
    margin-bottom: 25px;
}

.email-notice strong {
    color: #ffffff;
}

.status {
    font-weight: bold;
    color: #4da8da;
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Floating animation keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}