
:root {
    --bg-color: #E6E6E6; 
    --card-bg: #000000;
    --text-white: #FFFFFF;
    --text-grey: #B0BEC5;
    --accent-pink: #E91E63;
    --accent-hover: #C2185B;
    --font-main: 'Inter', sans-serif;
    
    
    --deco-purple: #5E35B1; 
    --deco-teal: #006064;   
    --deco-magenta: #D81B60;
    --deco-dark: #1A237E;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    color: var(--text-white);
}


.background-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 1200px;
    min-height: 80vh; 
    border-radius: 30px;
    padding: 60px 80px;
    position: relative;
    overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


header {
    margin-bottom: 80px;
    z-index: 10;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    height: 40px;
    width: 40px;
}


.logo-icon path, .logo-icon rect {
    transition: fill 0.3s ease;
}

.logo-text {
    font-size: 1.2rem;
    color: white;
    letter-spacing: 0.5px;
}

.logo-text strong {
    font-weight: 700;
}


.content {
    max-width: 600px;
    z-index: 10;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-text-container {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.accent-bar {
    width: 6px;
    background-color: var(--accent-pink);
    border-radius: 3px;
    flex-shrink: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.5;
    font-weight: 400;
}


.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-intro {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.signup-form {
    display: flex;
    gap: 0; 
    max-width: 450px;
}

.signup-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px; 
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
}

.signup-form button {
    background-color: var(--accent-pink);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 2px; 
}

.signup-form button:hover {
    background-color: var(--accent-hover);
}


footer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 40px;
    z-index: 10;
    position: relative;
}

footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #999;
}




@media (max-width: 900px) {
    .main-card {
        padding: 40px;
    }
    

}

@media (max-width: 600px) {
    .main-card {
        padding: 30px 20px;
        min-height: auto;
    }
    

    
    h1 {
        font-size: 2rem;
    }
    
    .signup-form {
        flex-direction: column;
    }
}


.bottom-right-decor {
    position: absolute;
    bottom: -3em;
    right: -2em;
    width: 350px; 
    height: 300px;
    z-index: 5; 
    pointer-events: none;
}

@media (max-width: 900px) {
    .bottom-right-decor {
        opacity: 0.3;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .bottom-right-decor {
        display: none;
    }
}


.ml-form-embedContainer {
    width: 100% !important;
}

.ml-form-embedWrapper {
    background-color: transparent !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.ml-form-formContent {
    flex-grow: 1;
    margin: 0 !important;
    width: 100%;
}

.ml-field-group {
    margin: 0 !important;
    width: 100%;
}

.signup-form input[type="email"] {
    width: 100% !important;
}


.ml-form-successBody {
    padding: 20px 0;
}
