
    .form-control{
    border-radius:5px;

    }

    
   .float-field {
  position: relative;
  margin-top: 24px;
}

.float-field input,
.float-field textarea,
.float-field select {
  width: 100%;
  height: 53px;
  padding: 14px 12px;
  border: 1.5px solid #333;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.float-field input::placeholder {
  color: transparent;
}

.float-field label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #333;
  font-size: 16px;
  pointer-events: none;
  background: #fff;
  padding: 0 6px;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

/* Float labels */
.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label,
.float-field input.filled + label,
.float-field select:focus + label,
.float-field textarea:focus + label,
.float-field select.filled + label { /* optional selects */
  top: -2px;
  font-size: 15px;
  color: #0bae02;
  
}

/* Focus border */
.float-field input:focus,
.float-field textarea:focus,
.float-field select:focus {
  border-color: #007bff;
}

.float-field label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #333;
  font-size: 16px;
  pointer-events: none;
  background: #fff;
  padding: 0 6px;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  
}

/* Float label when container has .filled */
.float-field.filled label,
.float-field input:focus + label,
.float-field textarea:focus + label,
.float-field select:focus + label {
  top: -2px;
  font-size: 15px;
  color: #333;
}
.float-field.filled label,
.float-field input:focus + label,
.float-field textarea:focus + label,
.float-field select:focus + label 
{
  font-weight:bold; 
  color: #0bae02;
}


/*  other link arrow */

    .custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Circle */
.custom-list li::before {
content: "➤";
    position: absolute;
    left: 0;
    top: 2px;
    width: 27px;
    height: 27px;
    background: #ef3902;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Shadow */
    box-shadow: 0 6px 15px rgba(146, 146, 144, 0.35);
}

/* Hover effect (optional but nice) */
.custom-list li:hover::before {
    transform: translateX(3px);
    transition: 0.3s ease;
}




