/* Basic Reset and Font Setup */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9eff2; /* Light blue/gray background */
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container for Centering Content */
.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    max-width: 650px;
    width: 90%;
    text-align: center;
}

/* --- LOGO and HEADER Styling --- */
header {
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.5em; /* Size of the icon */
    color: #004d99; /* Deep Watchdog Blue */
    position: relative;
}

.secondary-icon {
    font-size: 1.2em;
    color: #28a745; /* Compliance Green */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -30%);
}

header h1 {
    color: #00a0d6; 
    font-size: 1.8em;
 }

/* Main Content Styling */
main h2 {
    color: #444;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

main p {
    margin-bottom: 20px;
    color: #555;
}

.launch-message {
    font-weight: bold;
    color: #00a0d6; /* Brighter, professional blue */
    font-size: 1.2em;
}

header2-message {
    font-weight: bold;
    color: #00a0d6; /* Brighter, professional blue */
    font-size: 6.2em;
}


/* Signup Form Styling */
.signup-form {
    background-color: #f7f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
}

.signup-form h3 {
    margin-top: 0;
    color: #0056b3;
}

.signup-form input[type="email"] {
    width: calc(70% - 24px); 
    padding: 14px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
    font-size: 1em;
}

.signup-form button {
    width: 25%;
    background-color: #00a0d6;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #007bff;
}

/* Status Message Styling */
#status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    display: block; /* To override 'hidden' display */
}

.hidden {
    display: none !important;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Footer Styling */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.85em;
    color: #888;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #004d99;
}