:root {
    --primary-color: #004a99;
    --secondary-color: #ffc107;
    --bg-light: #f8f9fa;
    --text-dark: #343a40;
    --text-light: #6c757d;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 80vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Left Side (Info) */
.form-info {
    background: linear-gradient(135deg, var(--primary-color), #002a5c);
    color: white;
    padding: 60px 40px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-content .logo {
    height: 80px;
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

.info-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-text {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-block i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.info-block h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.info-block p {
    margin: 0;
    opacity: 0.8;
}

.info-contact {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.info-contact p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
}

/* Right Side (Form) */
.form-section {
    width: 55%;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-box {
    width: 100%;
    max-width: 450px;
}

.form-title {
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    height: 55px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 74, 153, 0.25);
}

.form-floating > label {
    padding: 1rem 1.25rem;
}

.btn-submit {
    background-color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #003d7a;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .form-container {
        flex-direction: column;
        min-height: auto;
        width: 90%;
        margin: 5vh 0;
    }

    .form-info, .form-section {
        width: 100%;
    }

    .form-info {
        padding: 40px 30px;
        text-align: center;
    }

    .info-block {
        justify-content: center;
        text-align: left;
    }

    .form-section {
        padding: 40px 30px;
    }
}
