:root {
  --primary: #022cee;

  --bs-primary-rgb: 2, 44, 238;
  --secondary: #e4e4ff;
  --tertiary: #f1f1ff;
  --black: #000;
  --color: #3e414b;
  --bs-body-color: #3e414b;
  --bs-heading-color: #3e414b;
  --orange: #fc921f;
  --bs-navbar-toggler-icon-bg: url("https://d1585q1wairh36.cloudfront.net/assets/Icon/navBtn.svg");
  --white: #ffffff;
  --accordion-btn-icon-close: url("https://d1585q1wairh36.cloudfront.net/assets/Icon/Accord-close.svg");
  --accordion-btn-icon: url("https://d1585q1wairh36.cloudfront.net/assets/Icon/Accord-open.svg");
  --bs-accordion-body-padding-y: 0rem;
  --bg-50: rgba(228, 228, 255, 0.5);
  --bg-30: rgba(228, 228, 255, 0.3);
  --bg-20: rgba(228, 228, 255, 0.2);
}

body {
  font-family: "futura-pt", sans-serif;
  padding-right: 0px !important;
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.place-content-center {
  place-content: center;
}
.header-logo {
  max-width: 214px;
}
.fw-500 {
  font-weight: 500;
}
.btn-primary {
  --bs-btn-bg: #022cee;
}
.form-control {
  border-radius: 20px;
  border: 1px solid transparent;
  background-color: var(--tertiary) !important;
  color: #333;
  font-size: 1.2rem;
  padding: 0.8rem 1.6rem;
  border: none;
  width: 100%;
  display: block;
  border-bottom: 0.3rem solid transparent;
  transition: all 0.3s;
  height: auto;
}

.form-control:focus-visible {
  outline: #022dee64 !important;
  color: #212529;
  background-color: #fff;
  border-color: #022dee64;
  outline: 0;
  box-shadow: none;
}
.error,
.text-color-danger {
  color: red;
}
.FBSPL-footer {
  margin-top: auto;
  padding: 20px;
  background-color: var(--bg-50);
}
.upTranslate {
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}
.upTranslate:hover {
  top: -8px;
}
.blueCTA {
  width: 38px;
  height: 38px;
  margin-left: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  background-image: url("../images/white-vector.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40% 40%; /* Adjusts the size of the SVG inside the button */
  cursor: pointer;
  padding: 0;
  transition: background-image 0.3s ease; /* Smooth transition for fill change */
}
.blueCTA:hover {
  border: 1px solid var(--orange);
  background-image: url("../images/blue-vector.svg");
  background-color: transparent;
}
.anchorCTA {
  text-decoration: none;
}

.FormCTA:hover,
.anchorCTA:hover {
  .blueCTA {
    border: 1px solid var(--orange);
    background-image: url("https://d1585q1wairh36.cloudfront.net/assets/Icon/blue-vector.svg");
    background-color: transparent;
  }
}
.FormCTA {
  background: none !important;
  border: none !important;
}
.headingCTA {
  color: var(--primary);
  align-items: center;
  vertical-align: middle;
  display: inline-flex;
}
.text-primary {
  color: #022cee !important;
}
/* Style for the notification */
#notification {
  position: fixed;
  
  background-color: #28a745; /* Green background for success */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Initially hidden */
  z-index: 9999; /* Ensure it appears above other elements */
  font-size: 16px;
}
