* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    color: #333;
}

.container1 {
    display: flex;
    max-width: 100%;
    margin: 40px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    height: 500px auto;
}

/* Sidebar Styles */
.sidebar {
    width: 0%;
    background: linear-gradient(180deg, #ffe5b4 0%, #ff8c00 100%);
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.itc-logo {
    height: 30px;
}

.help-logo {
    height: 34px;
}

.divider {
    margin: 0 10px;
    font-size: 20px;
    font-weight: 300;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.profile-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.profile-info p {
    font-size: 12px;
    opacity: 0.9;
}

blockquote {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 25px;
}

.divider-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 20px 0;
}

.trusted-text {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.brand-logo {
    height: 20px;
    max-width: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Form Section Styles */
.form-section {
    width: 100%;
    background-color: white;
    padding: 30px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
}

h1 {
    color: #2e8c5e;
    font-size: 24px;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.icon {
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    color: #999;
}

input, select, textarea {
    width: 100%;
    padding: 10px 10px 10px 30px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

input::placeholder, textarea::placeholder {
    color: #bbb;
}

input:focus, select:focus, textarea:focus {
    border-color: #2e8c5e;
}

textarea {
    resize: none;
    padding-left: 10px;
}

.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 10px;
    top: 10px;
    pointer-events: none;
    color: #999;
}

select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.sb-1 {
    width: 100%;
    padding: 15px;
    background-color: #2e8c5e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sb-1:hover {
    background-color: #247a4d;
}

.disclaimer {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

.disclaimer a {
    color: #2e8c5e;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.loader4 {
            display: none;
            text-align: center;
            font-size: 24px;
        }

        .dots span {
            display: inline-block;
            width: 8px;
            height: 8px;
            margin: 0 2px;
            background: #007bff;
            border-radius: 50%;
            animation: bounce 1.5s infinite ease-in-out;
        }

        .dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .dots span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .dots span:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
/* Responsive styles */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        margin: 10px;
        height: auto;
        box-shadow: none;
        border-radius: 0;
    }

    .sidebar,
    .form-section {
        width: 100%;
        padding: 20px;
        box-shadow: none;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    input,
    select,
    textarea {
        padding: 8px 8px;
        font-size: 14px;
    }

    .sb-1 {
        font-size: 15px;
        padding: 12px;
    }

    .form-subtitle {
        font-size: 13px;
    }

    h1 {
        font-size: 20px;
    }
}