/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #092566;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ===== MAIN CONTAINER ===== */
.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    display: flex;
    min-height: 400px;
}

/* ===== LEFT PANEL (CONTACT INFO) ===== */
.left-panel {
    background: #45649a;
    color: white;
    padding: 60px 40px 20px 30px;
    flex: 0.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-panel h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.left-panel p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-info {
    margin-top: auto;
}

.contact-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ===== RIGHT PANEL (FORM) ===== */
.right-panel {
    flex: 1.2;
    padding: 60px 50px ;
    background: #f8fafc;
    padding-bottom: 20px;
}

/* ===== FORM STRUCTURE ===== */
.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* ===== FORM LABELS ===== */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

/* ===== FORM INPUTS ===== */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: #1552da;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.submit-btn:hover {
    background: #0d3fb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(21, 82, 218, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 10px;
    }

    .left-panel {
        padding: 40px 30px;
        text-align: center;
    }

    .right-panel {
        padding: 40px 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 25px;
    }

    .left-panel h1 {
        font-size: 2rem;
    }
}