@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --brand-red: #e31e24; /* Transformance Red */
    --dark: #111111;
    --gray: #777777;
}

body, html {
    margin: 0; padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

.split-wrapper { display: flex; min-height: 100vh; }

/* Hero Section */
.hero-section {
    flex: 1.2;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), 
                url('https://images.unsplash.com/photo-1544928147-79a2dbc1f389?auto=format&fit=crop&q=80&w=1974');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    height: 100%; width: 100%;
    display: flex; align-items: center;
    padding: 0 10%; box-sizing: border-box;
}

.brand-logo {
    width: 200px; margin-bottom: 40px;
    filter: brightness(0) invert(1); /* Converts black logo to white */
}

.hero-content h1 {
    color: #fff; font-family: 'Playfair Display', serif;
    font-size: 3.5rem; line-height: 1.1; margin: 0;
}

.hero-content h1 span { color: var(--brand-red); }

.red-divider {
    width: 60px; height: 4px;
    background: var(--brand-red); margin: 30px 0;
}

.tagline {
    color: var(--brand-red); letter-spacing: 3px;
    font-weight: 700; font-size: 0.9rem;
}

.description {
    color: #e0e0e0; font-size: 1.1rem;
    max-width: 480px; line-height: 1.8; font-weight: 300;
}

/* Form Section */
.form-section {
    flex: 0.8; background: #fff;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
}

.form-container { width: 100%; max-width: 400px; }

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px; color: var(--dark); margin-bottom: 5px;
}

.form-header p { color: var(--gray); font-size: 14px; margin-bottom: 35px; }

.input-group { margin-bottom: 22px; }

.input-group label {
    display: block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; color: var(--dark);
    margin-bottom: 5px; letter-spacing: 1px;
}

.req { color: var(--brand-red); }

input[type="text"] {
    width: 100%; padding: 12px 0;
    border: none; border-bottom: 2px solid #eeeeee;
    font-size: 15px; transition: 0.3s;
}

input[type="text"]:focus {
    outline: none; border-bottom-color: var(--brand-red);
}

.err-text { color: var(--brand-red); font-size: 11px; margin-top: 5px; }

.submit-btn {
    width: 100%; padding: 18px;
    background: var(--brand-red); color: #fff;
    border: none; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; cursor: pointer; border-radius: 4px;
    transition: 0.3s; margin-top: 15px;
}

.submit-btn:hover {
    background: #b31419;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .split-wrapper { flex-direction: column; }
    .hero-section { min-height: 350px; }
    .hero-content h1 { font-size: 2.5rem; }
}