﻿
.form-section {
    display: none;
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-control, .custom-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 30px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #333;
}

    .custom-dropdown:focus, .form-control:focus {
        border-color: #1CB098;
        box-shadow: 0 0 0 3px rgba(28, 176, 152, 0.2);
        outline: none;
    }

.submit-btn {
    padding: 12px 40px;
    background-color: #1CB098;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

    .submit-btn:hover {
        background-color: #17a48d;
    }

.check-btn {
    padding: 10px 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.error-msg {
    color: red;
    font-size: 13px;
    margin-top: 3px;
    display: block;
}

.captcha-container {
    position: relative;
    z-index: 10;
}

.mobile-section {
    text-align: center;
}

.mobile-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-input {
    flex: 1;
    min-width: 250px;
}

.proceed-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.captcha-image-wrapper {
    max-width: 250px;
}

@media (max-width: 767px) {
    .captcha-container {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .captcha-image-wrapper {
        max-width: 100% !important;
        margin-bottom: 10px;
    }

    cap\\:CaptchaControl {
        width: 100% !important;
        height: auto !important;
        max-height: 80px !important;
    }
}

