﻿

/* Professional body background and overall styling */
body {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 50%, #ced4da 100%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #495057;
    margin: 0;
    padding: 0;
}

/* Professional background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(108, 117, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(73, 80, 87, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(52, 58, 64, 0.06) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Professional headers */
h2 {
    color: #343a40;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 28px;
}

/* Professional form labels */
.form-group label {
    color: #495057;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

/* Better form control focus states */
.form-control:focus {
    border-color: #6c757d;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.15);
    outline: none;
    color: #495057 !important;
    background-color: #ffffff !important;
    transform: translateY(-1px);
}

/* Improved logos container */
.logos-container {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(108, 117, 125, 0.1);
}

/* Professional spacing */
.form-group {
    margin-bottom: 20px;
}

.row {
    margin-bottom: 8px;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .Registration-body {
        padding: 20px;
        margin: 10px;
    }

    .Red-btn, .resetForms {
        font-size: 14px;
        padding: 10px 20px;
    }

    h2 {
        font-size: 24px;
    }
}

.password-toggle {
}

    .password-toggle input {
        padding-right: 40px;
    }

    .password-toggle .toggle-icon {
        position: absolute;
        top: 50%;
        right: 20px;
        cursor: pointer;
        transform: translateY(-50%);
    }

.login-body {
}

.layout-footer {
    /*display: none;*/
}

.lay-out-header {
    /*    display: none; */
}


.login-body .container {
}


@media (max-width:767px) {
    .salutation-radio {
        border: unset;
        background: #fff;
    }
}


/*intl-tel-input tag relate css*/



/* Allow text wrapping in the country dropdown */
.iti__country-list {
    max-width: 100vw; /* Ensure the dropdown doesn't overflow the viewport */
}

.iti__country {
    word-wrap: break-word; /* Allow the country names to wrap to the next line */
    white-space: normal; /* Ensure the text is allowed to break */
}

@media (max-width: 768px) {
    .iti__country-list {
        max-width: calc(100vw - 30px); /* Constrain to 80% of screen width for better fit */
    }
}


.iti__arrow {
    display: none;
}

.itiCustomFocus:focus .iti__selected-dial-code {
    color: #495057 !important;
}


.iti {
    width: 100%;
}

.iti__selected-dial-code {
    color: #495057;
}

.bi-eye::before {
    color: #6c757d;
}


.custom-selectWrapper::after {
    color: #6c757d;
}

.form-control {
    background-color: #ffffff;
    color: #495057;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    padding: 12px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}



.form-group {
    margin-bottom: 0.5rem;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.custom-selectWrapper ::after {
    color: #6c757d;
}
.Red-btn {
    border-radius: 8px;
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(108, 117, 125, 0.3);
}

.Red-btn:hover {
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(108, 117, 125, 0.4);
}

.resetForms {
    background: linear-gradient(135deg, #adb5bd 0%, #868e96 100%) !important;
    box-shadow: 0 3px 12px rgba(173, 181, 189, 0.3) !important;
}

.resetForms:hover {
    background: linear-gradient(135deg, #868e96 0%, #6c757d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(173, 181, 189, 0.4) !important;
}




/*form select2 select tag css*/

.select2-selection {
    height: 2.5rem;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.select2-selection__rendered {
    height: 100% !important;
    line-height: 2.5rem !important;
    padding-left: 0.8rem !important;
}

.select2-selection__placeholder {
    color: #6c757d !important;
}

.select2-selection.select2-selection--single {
    height: 2.4rem;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}




/* Ensure the select element and container are both using the full width */
.form-group {
    width: 100%;
}

#Nationality {
    width: 100% !important; /* Forces Select2 to follow the container width */
}

.select2-selection__arrow {
    display: none !important;
}


/* Prevent the default autofill background color */
input:-webkit-autofill {
    background-color: transparent !important; /* Removes background color */
    color: inherit !important; /* Inherit text color */
}

/* Also disable color change */
input:autofill {
    background-color: transparent !important; /* Removes background color */
    color: inherit !important; /* Inherit text color */
}

/* To prevent any further styling issues */
input:-internal-autofill-selected {
    background-color: transparent !important;
    color: inherit !important;
}

.select2-selection__clear {
    display: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057 !important;
}




@media (max-width: 767px) {
    .layout-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}




.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(255, 0, 0, 0.8); /* Softer red */
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus,
.custom-selectWrapper .select2-selection.select2-selection--single:focus {
    box-shadow: unset; /* Slightly less aggressive */
}

.form-control, .custom-selectWrapper .select2-selection.select2-selection--single {
    background-color: #ffffff !important;
}

.requiredField {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #dc3545 !important;
    font-weight: 600;
}


.logos-container {
    background: #fff;
    padding: 0.5rem 0 0.5rem 0.5rem;
    border-radius: 0.5rem;
}

.gujGiftExpo-Logo {
    height: 3rem;
}

.Fundoo-Logo {
    height: 2.9rem;
    padding-right: 1rem;
}
.Registration-body {
    border-radius: 16px;
    background-color: rgb(249 249 249 / 50%) !important;
    /* background: rgba(255, 255, 255, 0.98); */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(222, 226, 230, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    color: #495057;
}

.optionalField {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #495057;
    font-weight: 500;
}

.sheSummitForm {
    background-color: rgb(232 224 224 / 71%);
    padding: 0.5rem;
    border-radius: 1rem;
}

.clickText {
    color: #6c757d !important;
}

