@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,700");
/* Buttons */
body {
  font-family: "open sans", roboto, arial, sans-seif !important ;
  background: #fff !important ;
}

input {
  background: #fff !important ;
} 

/* New styles for the input rows */
.custom_input-row {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adjust gap between the columns as needed */ 
    width: 100%; 
  }
  
  /* Make each input box take 50% of the container width */
  .custom_input-row .custom_input-box {
    flex: 1; /* Each input box will take equal space */
  }

  .custom_input-container {
    display: flex;
    align-items: center; /* Center items vertically */
    gap: 5px; /* Space between the prefix, input, and suffix */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-bottom: 15px;
  }
  
  /* Prefix and Suffix styling */
  .custom_input-prefix,
  .custom_input-suffix {
    white-space: nowrap; /* Prevent line breaks */
    font-size: 16px; /* Adjust font size as needed */
    color: #333; /* Adjust color as needed */
  }
  
  /* Adjust input box to take available space */
  .custom_input-container .custom_input-box {
    flex: 1; /* Make the input take the remaining space */
    min-width: 150px; /* Minimum width to ensure readability */
  }
  
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .custom_input-row {
      flex-direction: column; /* Stack inputs vertically on small screens */
    }
    .custom_input-row .custom_input-box {
      width: 100%; /* Make inputs full width */
    }
  }
  

.custom_input-box.active-grey .custom_input-1 {
  border: 1px solid #dadce0 !important;
}
.custom_input-box.active-grey .custom_input-label {
  color: #80868b !important;
  top: -8px !important;
  background: #fff !important;
  font-size: 11px !important;
  transition: 250ms !important ;
}
.custom_input-box.active-grey .custom_input-label svg {
  position: relative !important;
  /* width: 11px !important; */
  height: 11px !important ;
  top: 2px !important ;
  transition: 250ms !important ;
}

.custom_input-box {
  position: relative !important ;
  margin: 10px 0 !important ;
}
.custom_input-box .custom_input-label {
  position: absolute !important ;
  color: #80868b !important ;
  font-size: 16px !important ;
  font-weight: 400 !important ;
  /* max-width: calc(100% - (2 * 8px)) !important ; */
  overflow: hidden !important ;
  text-overflow: ellipsis !important ;
  white-space: nowrap !important ;
  left: 8px !important ;
  top: 15px !important ;
  padding: 0 8px !important ;
  transition: 250ms !important ;
  user-select: none !important ;
  pointer-events: none !important ;
}
.custom_input-box .custom_input-label svg {
  position: relative !important ;
  /* width: 15px !important ; */
  height: 15px !important ;
  top: 2px !important ;
  transition: 250ms !important ;
}
.custom_input-box .custom_input-1 {
  box-sizing: border-box !important ;
  height: 60px !important ;
  /* width: 100% !important ; */
  border-radius: 4px !important ;
  color: #202124 !important ;
  border: 1px solid #dadce0 !important ;
  /* padding: 13px 15px !important ; */
  transition: 250ms !important ;
}
.custom_input-box .custom_input-1:focus {
  outline: none !important ;
  border: 2px solid #1a73e8 !important ;
  transition: 250ms !important ;
}

.custom_input-box.error .custom_input-label {
  color: #f44336 !important ;
  top: -8px !important ;
  background: #fff !important ;
  font-size: 11px !important ;
  transition: 250ms !important ;
}
.custom_input-box.error .custom_input-1 {
  border: 2px solid #f44336 !important ;
}

.custom_input-box.focus .custom_input-label,
.custom_input-box.active .custom_input-label {
  color: #1a73e8 !important ;
  top: -8px !important ;
  background: #fff !important ;
  font-size: 11px !important ;
  transition: 250ms !important ;
}
.custom_input-box.focus .custom_input-label svg,
.custom_input-box.active .custom_input-label svg {
  position: relative !important ;
  /* width: 11px !important ; */
  height: 11px !important ;
  top: 2px !important ;
  transition: 250ms !important ;
}

.custom_input-box.active .custom_input-1 {
  border: 2px solid #1a73e8 !important ;
}

.btn {
  background: #fff !important ;
  color: #333 !important ;
  cursor: pointer !important ;
  border: none !important ;
  white-space: normal !important ;
  letter-spacing: 0.25px !important ;
  font-weight: 400 !important ;
  font-size: 14px !important ;
  padding: 8px 16px !important ;
  border-radius: 4px !important ;
  line-height: 20px !important ;
  /* min-width: 88px !important ; */
  transition: 250ms !important ;
}
.btn:hover {
  background: #ddd !important ;
  transition: 250ms !important ;
}
.btn:focus {
  outline: none !important ;
}

.btn-primary {
  background: #1a73e8 !important ;
  color: #fff !important ;
  transition: 250ms !important ;
}
.btn-primary:hover {
  background: #287ae6 !important ;
  box-shadow: 0 1px 1px 0 rgba(66, 133, 244, 0.45), 0 1px 3px 1px rgba(66, 133, 244, 0.3) !important ;
  transition: 250ms !important ;
}

.pull-right {
  float: right !important ;
}

.clear {
  clear: both !important ;
}




:root {

    --input-color: #99A3BA;
    --input-border: #CDD9ED;
    --input-background: #fff;
    --input-placeholder: #CBD1DC;

    --input-border-focus: #275EFE;

    --group-color: var(--input-color);
    --group-border: var(--input-border);
    --group-background: #EEF4FF;

    --group-color-focus: #fff;
    --group-border-focus: var(--input-border-focus);
    --group-background-focus: #678EFE;

}

.form-field {
    display: block;
    width: 100%;
    padding: 8px 16px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border-radius: 6px;
    -webkit-appearance: none;
    color: var(--input-color);
    border: 1px solid var(--input-border);
    background: var(--input-background);
    transition: border .3s ease;
    &::placeholder {
        color: var(--input-placeholder);
    }
    &:focus {
        outline: none;
        border-color: var(--input-border-focus);
    }
}

.form-group {
    position: relative;
    display: flex;
    width: 100%;
    & > span,
    .form-field {
        white-space: nowrap;
        display: block;
        &:not(:first-child):not(:last-child) {
            border-radius: 0;
        }
        &:first-child {
            border-radius: 6px 0 0 6px;
        }
        &:last-child {
            border-radius: 0 6px 6px 0;
        }
        &:not(:first-child) {
            margin-left: -1px;
        }
    }
    .form-field {
        position: relative;
        z-index: 1;
        flex: 1 1 auto;
        width: 1%;
        margin-top: 0;
        margin-bottom: 0;
    }
    & > span {
        text-align: center;
        padding: 8px 12px;
        font-size: 14px;
        line-height: 25px;
        color: var(--group-color);
        background: var(--group-background);
        border: 1px solid var(--group-border);
        transition: background .3s ease, border .3s ease, color .3s ease;
    }
    &:focus-within {
        & > span {
            color: var(--group-color-focus);
            background: var(--group-background-focus);
            border-color: var(--group-border-focus);
        }
    }
} 


/* File upload container */
.file-upload-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
  }
  
  /* Hide the default file input */
  .file-upload-input {
    display: none;
  }
  
  /* Style for the custom file upload label */
  .file-upload-label {
    background-color: #5093ea; /* Primary color */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect */
  .file-upload-label:hover {
    background-color: #287ae6; /* Darker shade for hover */
  }
  
  /* Icon styling for upload */
  .file-upload-label i {
    font-size: 18px;
  }
  
  /* Text to show selected file name */
  .file-upload-text {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px; /* Limit the width */
  }
  
  /* Image preview container */
  .image-preview-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px; /* Limit the preview size */
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  /* Style for the image preview */
  #image-preview {
    max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  height: 200px;
  width: 200px;
  }
  

  .password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #80868b;
    font-size: 16px;
    top: 15px;  
  }
  

  /* Adjust the width of the phone input to fit the country code dropdown */
.custom_input-1 {
  width: calc(100% - 20px);  
  padding-left: 60px;     

  /* box-sizing: border-box !important;
  height: 60px !important;
  border-radius: 4px !important;
  color: #202124 !important;
  border: 1px solid #dadce0 !important;
  padding: 0px 0250px !important;
  transition: 250ms !important; */
}

.iti {
  width: 100%;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
  border-right: 1px solid #dadce0;
}

 /* Custom styles for the select dropdown */
 .custom_input-2 {
  appearance: none; /* Remove default styling */
  padding: 10px; /* Add padding */
  border: 1px solid #ccc; /* Border styling */
  border-radius: 4px; /* Rounded corners */
  width: 100%; /* Full width */
}

/* Style for the flag icon */
.flag-icon {
  margin-right: 10px; /* Space between flag and text */
}

/* Adjust select dropdown style */
option {
  padding: 10px; /* Padding for options */
}
 