/* Colors */
:root {
  --color-default: #000000;
  --color-primary: #0d04d6;
  --color-secondary: #0F58C9;

}
.form-group{
    margin: 0%;
}

input::placeholder {
    color: #BBB !important;
}

  /* Apply animation to the button */
  .btn-submit {
    background:#E9521D !important;
    color: #fff !important; /* White text */
    transition: background-color 0.3s ease-in-out; /* Smooth transition */
    text-align: center;
    border-radius: 8px;
    padding: 2% 10%;
    text-align: center;
    border: 1px solid transparent;

  }
  
  /* Modify hover effect */
  .btn-submit:hover {
    background-color: #f07043  !important;/* Hover color */
    animation: none; /* Disable animation on hover */
  }
