@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.bg-image {
    height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
}

.img-fluid {
    object-fit: cover;
}

/* Customize login form */
.login-form {
 
    max-width: 400px;
    width: 80%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
 
}
.input-label{
    color: #707070;
}
a{
    color: #214283;
}
.ump-input{
    background-color: #eef4ff;
    color: #ccc !important;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    padding-top: 8px;
    padding-bottom: 8px;

}
.form-control{
        background-color: #eef4ff !important;
    color: #525151 !important;
    border: 1px solid #d8e0f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    height:45px !important;
     margin-bottom: 12px !important;
     box-shadow: 0 1px 2px rgba(18, 38, 63, 0.05);
}
.form-control::placeholder {
    color: #e4e4e4 !important;
    opacity: 1;
}

.form-select{
        background-color: #eef4ff !important;
    color: #E4E4E4 !important;
    border: none !important;
    border-radius: 0px !important;
    font-size: 14px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    height:45px !important;
    box-shadow: 0 1px 2px rgba(18, 38, 63, 0.05);
}
.form-select {
    /* Basic styling */
    appearance: none; /* Remove default styling (browser-specific) */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    
    width: 100%;
    padding: 10px 20px; /* Space inside */
    font-size: 16px; /* Text size */
    color: #333; /* Text color */
    background-color: #eef4ff; /* Light background */
    border: 2px solid #ccc; /* Border color */
    border-radius: 8px; /* Rounded corners */
    outline: none; /* Remove default outline on focus */
    transition: all 0.3s ease-in-out; /* Smooth transition for focus */
    box-sizing: border-box; /* Include padding in width/height calculation */
}

.form-select:hover {
    border-color: #5c6bc0; /* Highlight border on hover */
    background-color: #fafafa; /* Subtle background change on hover */
}

.form-select:focus {
    border-color: #5c6bc0; /* Change border color on focus */
    background-color: #fff; /* Lighter background on focus */
    box-shadow: 0 0 5px rgba(92, 107, 192, 0.5); /* Soft shadow on focus */
}

/* Custom arrow icon */
.form-select::after {
    content: '\f078'; /* Unicode for down arrow */
    font-family: 'FontAwesome'; /* Make sure you have FontAwesome or similar icon font */
    font-size: 18px;
    color: #333;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent the icon from interfering with interaction */
}

/* Optional: Add a subtle shadow for the select */
.form-select {

}

/* Style for dropdown options */
.form-select option {
    background-color: #fff;
    color: #333;
    padding: 10px;
    font-size: 16px;
}

.ump-btn{
    background-color: #214283;
    color: #fff;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    min-width: 100px;
    padding-left: 20px;
    padding-right: 20px !important;
}
.btn-primary{
 background-color: #214283 !important;
border-radius:0px !important;
}
.custom-select {
  position: relative;
  font-family: Arial;

}
.deleteRow{
height: 45px !important;
}
.form-label {
  margin-bottom: 0px !important;
color:gray
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #214283;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color:  #214283;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Basic styling for the preview */
#country-preview {
    cursor: pointer;
    position: relative;
}

/* Dropdown options styling */
.country-options {
    position: absolute;
    background:  #214283;
    border: 1px solid #ccc;
    width: 200px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    font-size: 12px;
    
}


.country-option {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.country-option img {
    margin-right: 8px;
}

.country-option:hover {
    background-color: #f0f0f0;
}

/* Hide by default */
.d-none {
    display: none;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    #image-section {
        order: -1; /* Move image section above login form */
        height: 15vh;
    }

    .img-fluid {
        height: 100%;
        object-fit: cover;
    }
    
    #form-section {
        height: 70vh;
    }
}

.txt-xxs {
    font-size: 9px;
    }
    .txt-xs {
    font-size: 12px;
    }
    .txt-sm {
    font-size: 14px;
    }
    .txt-md {
    font-size: 16px;
    }
    .txt-l {
    font-size: 18px;
    }
    .txt-lg {
    font-size: 30px !important;

    }
    .txt-xl {
    font-size: 28px;
    }
    .txt-xxl {
    font-size: 36px;
    }
    .txt-xxxl {
    font-size: 48px;
    }


@media (max-width: 1300px) {
    .txt-xxs {
        font-size: 8px;  
    }
    .txt-xs {
        font-size: 10px;  
    }
    .txt-sm {
        font-size: 12px;  
    }
    .txt-md {
        font-size: 14px;  
    }
    .txt-l {
        font-size: 16px;  
    }
    .txt-lg {
        font-size: 28px !important; 
    }
    .txt-xl {
        font-size: 22px;  
    }
    .txt-xxl {
        font-size: 30px;  
    }
    .txt-xxxl {
        font-size: 40px;  
    }
}


@media (max-width: 1024px) {
    .txt-xxs {
        font-size: 7px;  
    }
    .txt-xs {
        font-size: 9px;   
    }
    .txt-sm {
        font-size: 11px;  
    }
    .txt-md {
        font-size: 13px;  
    }
    .txt-l {
        font-size: 15px;  
    }
    .txt-lg {
        font-size: 26px !important; 
    }
    .txt-xl {
        font-size: 20px;  
    }
    .txt-xxl {
        font-size: 28px;  
    }
    .txt-xxxl {
        font-size: 38px;  
    }
}



@media (max-width: 768px) {
    .txt-xxs {
        font-size: 6px;   
    }
    .txt-xs {
        font-size: 8px;   
    }
    .txt-sm {
        font-size: 10px;  
    }
    .txt-md {
        font-size: 12px;  
    }
    .txt-l {
        font-size: 14px;  
    }
    .txt-lg {
        font-size: 24px !important; 
    }
    .txt-xl {
        font-size: 18px;  
    }
    .txt-xxl {
        font-size: 26px;  
    }
    .txt-xxxl {
        font-size: 32px;  
    }
}


@media (max-width: 480px) {
    .txt-xxs {
        font-size: 5px;   
    }
    .txt-xs {
        font-size: 7px;   
    }
    .txt-sm {
        font-size: 8px;  
    }
    .txt-md {
        font-size: 10px;  
    }
    .txt-l {
        font-size: 12px;  
    }
    .txt-lg {
        font-size: 20px !important; 
    }
    .txt-xl {
        font-size: 16px;  
    }
    .txt-xxl {
        font-size: 22px;  
    }
    .txt-xxxl {
        font-size: 25px;  
    }
}


.form-floating span{
    color:gray;
}


/* Hide mobile steps by default */
#mobile-steps {
  display: none;
}

/* Show desktop steps by default (for larger screens) */
#desktop-steps {
  display: block;
}

/* Media query for screens smaller than 1300px */
@media (max-width: 1300px) {
  #desktop-steps {
    display: none; /* Hide desktop steps */
  }

  #mobile-steps {
    display: none; /* Initially hide mobile steps */
  }

  /* Show the 'Steps' button on smaller screens */
  #display-mobile-steps {
    display: inline-block;
    cursor: pointer;
  }
}
label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
font-size: 16px !important;
}
.form-floating>label {
    top: -35px !important;
    color: gray;
   font-size: 16px !important;
}

.btn-danger {
    color: #fff;
    background-color: #e38189;
    border-color: #e38189;
}
.btn-danger:hover {
   
    background-color: #fff;
color:"#e38189";
    border-color: #e38189;
}
textarea{
   line-height: 2.5;
}
label{
    transform: none;
}

/* Ensure submission form rows stay left-aligned and keep consistent widths */
#v-pills-tabContent .row {
    justify-content: flex-start;
    gap: 16px 24px;
}

#v-pills-tabContent .row > .col-md-6:only-child,
#v-pills-tabContent .row > .col-lg-6:only-child {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
}

#v-pills-tabContent .row > .col-md-12:only-child,
#v-pills-tabContent .row > .col-12:only-child {
    flex: 0 0 100%;
    max-width: 100%;
}

img.img-fluid.mx-auto{
    max-width: 300px;
    max-height: 250px;
    object-fit: contain;
}