:root {
    --primary-color: #53aafc;
    --secondary: #1e1e1e;
    --success: #07cdae;
    --info: #009fe3;
    --warning: #ffbc1a;
    --danger: #fe7096;
    --light: #e4e4e9;
    --dark: #3e4b5b;
    --info-hover: #0190cd;
    --primary-hover: #0190cd;
    --primary-font: "Inter", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --roboto-font: "Inter";
    --inter-font: "Inter", sans-serif;
    --inter-font: "Inter", sans-serif;
    --White: #ffffff;
    --link: #53aafc;
    --Blue-Grey: #3e465a;
    --Dark-Blue: #101828;
    --Gray-50: #f9fafb;
    --Gray-100: #f2f4f7;
    --Gray-200: #eaecf0;
    --Gray-300: #d0d5dd;
    --Gray-400: #98a2b3;
    --Gray-500: #667085;
    --Gray-600: #475467;
    --Gray-700: #344054;
    --Gray-900: #101828;
    --Brand-50: #ffe5e6;
    --Brand-200: #ffb2b5;
    --Brand-500: #ff1e27;
    --Brand-600: #ed1c24;
    --Brand-700: #cc181f;
    --Brand-800: #a61419;
    --Success-50: #ecfdf3;
    --Success-100: #dcfae6;
    --Success-100: #dcfae6;
    --Success-500: #17b26a;
    --Black: #000000;
    --Blue-600: #36BFFA;
    --Base-White: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #3e465a;
    line-height: 1.5;
}

.footer-links li a{
    text-decoration: none;
}

.header {
    width: 100%;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}
.header .logo {
    height: 71px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo svg {
    display: block;
    width: 99px;
    height: 71px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    position: relative;
}

.btn-primary {
    background-color: #0ba5ec;
    color: #fff;
    box-shadow:
            0px 0px 0px 1px inset rgba(10, 13, 18, 0.18),
            0px -2px 0px 0px inset rgba(10, 13, 18, 0.05),
            0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    pointer-events: none;
}

.btn-primary:hover {
    background-color: #0991d4;
}

.btn-submit {
    width: 100%;
    background-color: #0ba5ec;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 20px;
    box-shadow:
            0px 0px 0px 1px inset rgba(10, 13, 18, 0.18),
            0px -2px 0px 0px inset rgba(10, 13, 18, 0.05),
            0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    pointer-events: none;
}

.btn-submit:hover {
    background-color: #0991d4;
}

.hero-section {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: flex-start;
    gap: 64px;
    padding: 60px 32px;
}

.hero-left {
    flex: 1;
    min-width: 0;
    padding-right: 64px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 60px;
    line-height: 72px;
    font-weight: 600;
    color: #3e465a;
    letter-spacing: -1.2px;
    margin: 0;
    max-width: 550px;
    width: 100%;
}

.text-blue {
    color: #0ba5ec;
}

.hero-description {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #475467;
    margin: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #eaecf0;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
    padding-top: 10px;
}

.feature-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #3e465a;
    margin: 0;
}

.login-card {
    flex-shrink: 0;
    padding-left: 32px;
    max-width: 435px;
    width: 100%;
}

.login-content {
    width: 100%;
    max-width: 401px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 7px;
    padding: 60px 32px;
    max-height: 428px;
    box-shadow: 32px 32px 64px 0px rgba(52, 64, 84, 0.08);
}

.login-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
    color: #3e465a;
    text-align: center;
    margin: 0 0 20px 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #344054;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 20px;
    height: 44px;
    color: #667085;
    background-color: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0ba5ec;
}

.form-input::placeholder {
    color: #667085;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4px;
    margin-top: 4px;
}

.forgot-password {
    color: #0ba5ec;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 0px;
    transition: opacity 0.2s ease;
}

.forgot-password:hover {
    opacity: 0.8;
}
#modalOverlay-popup, #mapModal{
    display: none;
}
label.gfield_label.gform-field-label{
    display: block !important;
}
header{
    display: block !important;
}

.bottom-footer label.gfield_label.gform-field-label{
    display: none !important;
}


@media (min-width:1025px) and (max-width:1280px) {
    .hero-left {
        padding-right: 0px;
    }
    .hero-content-wrapper{
        gap: 32px;
    }
    .feature-text {
        font-size: 17px;
        line-height: 27px;
    }

}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 48px;
    }

    .hero-left {
        padding-right: 0;
    }

    .login-card {
        width: 100%;
        max-width: 465px;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .login-card {
        width: 100%;
        max-width: 355px;
    }
    .hero-content-wrapper {
        flex-direction: row;
        gap: 32px;
    }
    .hero-text-content {
        gap: 16px;
        margin-bottom: 20px;
    }
    .login-content{
        padding: 35px 22px;
    }
    .hero-title {
        font-size: 40px;
        line-height: 52px;
    }
    .feature-content {
        flex: 1;
        padding-top: 4px;
    }
    .feature-text {
        font-size: 17px;
        line-height: 26px;
    }


}
@media (min-width: 768px) and (max-width: 992px) {
    .hero-container{
        margin-top: 104px;
    }
}

@media (max-width: 767px) {

    .hero-content-wrapper {
        padding: 40px 0;
        gap: 24px;
    }

    .login-content {
        padding: 20px 16px;
        max-width: 100%;
    }
    .login-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    .form-input{height: 44px;}
    .login-card {
        flex-shrink: 0;
        padding-left: 0;
    }
    .header .logo img {
        max-width: 110px;
    }
    .header .logo {
        height: auto;
    }
    .header {
        width: 100%;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 0;
        box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        cursor: pointer;
        border: none;
        transition: all 0.2s ease;
        position: relative;
    }
    .container {
        padding: 0 16px;
    }
    .hero-container {
        padding: 0 16px;
        margin-top: 72px;
    }
    .hero-title {
        color: #3E465A;
        font-size: 36px;
        font-style: normal;
        font-weight: 600;
        line-height: 44px;
        letter-spacing: -0.72px;
    }
    .hero-text-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }
    .hero-description {
        font-size: 14px;
        line-height: 20px;
        padding-right: 25px;
    }

    .feature-text {
        font-size: 14px;
        line-height: 20px;
    }
    .feature-item {
        display: flex;
        align-items: center;
        padding-right: 10px;
    }
    .feature-item:last-child {
        padding-right: 40px;
    }
    .feature-content {
        flex: 1;
        padding-top: 0px;
    }


}

@media (max-width: 480px) {
    .header .logo img {
        max-width: 110px;
    }
    .header .logo {
        height: auto;
    }
    .container {
        padding: 0 16px;
    }

}