/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F5F2ED; /* From theme background.default */
    color: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
}

/* Logo styles */
.logo-container {
    margin-bottom: 1rem;
    text-align: center;
}

.logo {
    height: 180px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3.25rem;
    color: #000000; /* Black text as requested */
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #000000;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: #000000; /* Black text as requested */
    max-width: 600px;
    margin: 0 auto;
}

/* Notification Form */
.notification-form {
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

button[type="submit"] {
    padding: 0.75rem 1.5rem;
    background-color: #EF4044; /* Hale red color */
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #D73A3F; /* Darker red on hover */
}

button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-message {
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-message.success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-message.error {
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .logo {
        height: 120px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    button[type="submit"] {
        width: 100%;
    }
} 