* {
    box-sizing: border-box;
    font-family: Arial, sans-serif
}

body {
    margin: 0;
    background: #f1f4f8;
}

.page-bg {
    padding: 40px 0;
}

/* .zoho-form{
    max-width:720px;
    margin:auto;
    padding:30px 40px 40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
} */

.form-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.field {
    margin-bottom: 10px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2a44;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #b9c1f2;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    height: 120px;
    resize: none;
}

small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

/* PHONE FIELD */
.phone-wrapper {
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: #fff;
}

.country-part {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    padding-right: 10px;
    border-right: 1px solid #d1d5ff;
}

.country-part img {
    width: 20px
}

.phone-input {
    border: none;
    outline: none;
    padding-left: 12px;
    font-size: 14px;
    flex: 1;
}

.arrow {
    margin-left: 4px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg);
}

/* DROPDOWN */
.country-list {
    display: none;
    position: absolute;
    top: 130%;
    left: 0;
    width: 350px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    z-index: 99;
    padding-left: 0px;
}

.country-list li {
    list-style: none;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.country-list li:hover {
    background: #f2f4ff;
}

/* BUTTON */
.submit-btn {
    display: block;
    margin: 15px auto 0;
    padding: 7px 34px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.5s;
}

.submit-btn:hover {
    background: #fff;
    color: #000;
}

@media(max-width:600px) {
    .two-col {
        grid-template-columns: 1fr
    }

    .zoho-form {
        padding: 0px
    }
}

.hCSection {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
}

.hcContentBox {
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.hCRow {
    display: grid;
    grid-template-columns: 40% 40%;
    gap: 10%;
}

.hcHeading {
    font-size: 35px;
    font-weight: 700;
}

.phone-wrapper {
    width: 100%;
}

.iti {
    width: 100%;
}

.iti__country-list {
    max-height: 260px;
    font-size: 14px;
}

button {
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    background: #2db69b;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

@media only screen and (min-width:1200px) {
    .h-full {
        height: 100vh;
    }
}