body {
    margin: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
}

a {
    cursor: pointer;
}

.sign-up {
    background-color: #F5801F;
    text-decoration: none;
    color: #fff !important;
    padding: 6px 20px;
    border-radius: 20px;
    display: inline-block;
}

.sign-up-submit {
    background-color: #074E6E !important;
}

.sign-up-submit:hover {
    background-color: #F5801F !important;
}

.sign-up:hover {
    background-color: #074E6E;
}

.E09742 {
    color: #F5801F;
}

.A074E6E {
    color: #074E6E;
}

footer {
    background-color: #074E6E;
    padding: 7px 0;
    /* position: absolute;
    bottom: 0; */
    width: 100%;
}

footer a {
    text-decoration: none;
    color: #fff !important;
 
}

.popup input {
    width: 100%;
    margin-top: 30px;
    height: 50px;
    border-radius: 30px;
    border: 1.5px solid #F5801F;
    padding-left: 15px;
}

.popup input::placeholder {
  color: #F5801F;
}

.main-banner {
    background-image: url(img/banner.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.banner-form input {
    height: 40px;
    padding-left: 10px;
}

.SUBMIT-btn {
	 background-color: #074E6E;
	 color: #fff;

}
.SUBMIT-btn:hover {
	 cursor: pointer;
     background-color: #F5801F;
}
.modal-header .btn-close {
    background-color: red;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
    border-radius: 0;
}

  .custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    background-color: #074e6e;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(150%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }

  .custom-notification.show {
    transform: translateX(0);
  }

  .custom-notification.success {
    background-color: #074e6e;
  }

  .custom-notification.error {
    background-color: #dc3545;
  }
