@font-face {
    font-family: 'Neuropol-XRg';
    src: url('../fonts/Montserrat-Regular.woff') format('woff');
          /* url('../fonts/Roboto-Regular.ttf') format('truetype'); */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --neural-blue: #4DA8DA;
    --synapse-green: #66E0B3;
    --cognitive-purple: #9966CC;
    --memory-yellow: #ffd700;
    --cerebral-gray: #8A8A8A;
    --neuron-white: #FFFFFF;
--neuron-black: #000000;
    --warning-red: #FF3B30;
    --logo_orange: #FF9500	
}

body {
    margin: 0;
    font-family: 'Neuropol-XRg', 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--neuron-white);
    color: var(--neuron-white);
    overflow-x: hidden;
}

header, footer {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header {
    background: var( --cognitive-purple);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
}

.logo-img {
    max-width: 70px;
    height: auto;
}

sub {
    color: var(--neuron-white);
font-family: 'Neuropol-XRg', 'Arial', sans-serif;
text-align: left;	
    margin-left: 10px;
    font-size: 15px;  
}

.logo1 {
    color: var(--neuron-white);
font-family: 'Neuropol-XRg', 'Arial', sans-serif;
text-align: center;	
    margin-left: 10px;
    font-size: 40px;  
    transition: transform 0.3s ease-out;	    
}

.logo2 {
    color: var(--neuron-white);
font-family: 'Neuropol-XRg', 'Arial', sans-serif;
text-align: left;	
    font-size: 40px;  
    transition: transform 0.3s ease-out;	    
}


footer {
    background: var(--cognitive-purple);
    color: var(--neuron-white);
    text-align: right;
    font-weight: bold;
    font-size: 12px;
    padding: 10px 20px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px;
}

.coming-soon {
    color: var(--neural-blue);
    font-size: 30px;
margin-bottom: 20px;
    transition: transform 0.3s ease-out;
}

.email-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

input, button {
    padding: 10px 15px;
    font-size: 20px;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 5px;
    font-family:  'Neuropol-XRg', 'Arial', sans-serif;
}

input {
    border-radius: 25px;
    width: 250px;
    max-width: 100%;
    background: var(--neuron-white);
    color: var(--cerebral-gray);
}

button {
    background: var(--neural-blue);
    color: var(--neuron-white);
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background: var(--synapse-green);
}

#notification {
    margin-top: 10px;
    font-size: 15px;
}

.success { color: var(--synapse-green); }
.error { color: var(--warning-red); }

.tagline {
    color: var(--cerebral-gray);
    font-size: 24px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .coming-soon {
        font-size: 30px;
    }
    input, button {
        width: 100%;
        border-radius: 25px;
    }
    .tagline {
        font-size: 20px;
    }
}