:root{
    --main-color: #24af2b;
}

.footer-btn{
    border: 1px solid var(--main-color);
}

.videoBox{
    position: absolute;
    width: 650px;
    height: 366px;
    z-index: 9;
    right: 150px;
    top: 170px;
}

@media screen and (max-width: 400px) {
    .videoBox{
        display: none;
    }
}

@media (max-width: 575px) {
    .czm-left .czm-button {
        left: 20px;
        display: none !important;
    }
}


/* ============================================== */

.form-containers {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.form-left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 7vw;
    width: max-content;
    background-color: #000 !important;
    display: inline-block;
    min-width: 300px;
    margin-left: 150px;    
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 9rem; 
    color: white;
}


.form-left-panel h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.form-contact-numbers {
    margin-top: 2rem;
}

.form-phone-green {
    color: #2ecc40;
    font-size: 1rem;
    margin: 0.3rem 0;
}

.form-right-panel {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 7vw;
    background-color: #000 !important;
    width: max-content;
    display: inline-block;
}

.form-contact-form {
    width: 100%;
    max-width: 720px; /* Increased for a bigger look on large screens */
    padding: 4.5rem 3rem; /* More generous padding for prominence */
    background: rgba(0,0,0,0.85);
    box-sizing: border-box;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 2rem; /* Increased gap between fields */
    margin-bottom: 2rem; /* Increased space between rows */
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-full-width {
    flex: 2;
}

.form-label {
    color: #2ecc40;
    font-size: 0.80rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-weight: bold;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.4rem 0.8rem; /* Default (desktop) smaller height */
    border: none;
    border-radius: 0;
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
    background: #fff;
    color: #000;
    outline: none;
    box-sizing: border-box;
}

.form-input[type="number"]::-webkit-inner-spin-button, 
.form-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-input[type="number"] {
    -moz-appearance: textfield;
}

.form-min-note {
    color: #2ecc40;
    font-size: 0.85rem;
    font-weight: 400;
}

.form-submit-btn {
    width: 100%; 
    height: 2.2rem; 
    background: #25ae35;
    color: #000;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0; 
    cursor: pointer;
    transition: background 0.2s;
    display: block;
    margin: 0 auto;
}

.form-submit-btn:hover {
    background: white;
}

.form-code-phone-row {
    display: flex;
    gap: 1.5rem;
}
.form-code-phone-row .form-code-group,
.form-code-phone-row .form-phone-group {
    flex: unset;
}
.form-code-phone-row .form-code-group {
    flex: 0 0 35%;
    max-width: 35%;
}
.form-code-phone-row .form-phone-group {
    flex: 0 0 61%;
    max-width: 61%;
}

@media (max-width: 900px) {
    .form-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-left-panel, .form-right-panel {
        padding: 2rem 5vw;
    }
    .form-right-panel {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .form-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .form-left-panel {
        display: none;
    }
    .form-right-panel {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    .form-contact-form {
        max-width: 100vw;
        width: 100%;
        margin: 0 auto;
        padding: 3rem 7vw; /* More internal padding for a bigger look */
    }
    .form-row {
        flex-direction: row;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .form-row .form-full-width {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .form-row:not(:nth-child(3)) {
        flex-direction: column;
        gap: 0.7rem;
    }
    .form-input, .form-select {
        padding: 0.4rem 1.2rem; /* Comfortable, bigger input height */
    }
    .form-submit-btn {
        height: 3rem;
        font-size: 1.1rem;
    }
    .form-code-phone-row {
        flex-direction: row;
        gap: 1rem;
    }
    .form-code-phone-row .form-code-group,
    .form-code-phone-row .form-phone-group {
        flex: unset;
    }
    .form-code-phone-row .form-code-group {
        flex: 0 0 35%;
        max-width: 35%;
    }
    .form-code-phone-row .form-phone-group {
        flex: 0 0 60%;
        max-width: 60%;
    }
    .form-label {
        font-size: 0.8rem;
    }
    .form-min-note {
        font-size: 0.6rem;
    }
}