body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* background-image: url("/imgs/bg-img.jpg"); */
  background-repeat: no-repeat;
}

.navbar {
  background-color: black;
  color: white;
  padding: 0px 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navbar .title {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
}

.navbar .links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

/* No hover effect */
.navbar .links a:hover {
  color: white;
}

.custom-card {
  border: 1px solid black;
  padding: 10px;
}
.custom-card-title {
  /* padding: 20px; */
  /* background-color: rgb(124, 207, 0); */
  color: black;
  border-radius: 25px 25px 0px 0px;
  border-bottom: 3px solid black;
  text-align: center;
}
.custom-card-title h1 {
  font-size: 18px;
}

.custom-card-title p {
  font-size: 13px;
}
.custom-card-title h1,
.custom-card-title p {
  font-weight: bold;
}

input,
select {
  border-radius: 0px !important;
}

.btn-primary {
  background-color: black !important;
  border: 0px !important;
  border-radius: 0px !important;
  text-transform: uppercase;
  width: 100%;
  padding: 5px;
}
.form-control {
  font-size: 12px;
}
