body {
  background-color: var(--background);
  background-image: url(https://wallpapersworld.org/wp-content/uploads/2023/03/%D8%AE%D9%84%D9%81%D9%8A%D8%A7%D8%AA-%D8%B3%D9%8A%D8%A7%D8%B1%D8%A7%D8%AA-%D8%B3%D9%88%D8%AF%D8%A7%D8%A1-3-scaled.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--primary);
  transition: background-color 0.2s ease-in-out;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.navbar a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease-in-out;
}
.navbar a:hover {
  text-decoration: none;
  color: var(--primary-degraded);
}

.active-page {
  border-bottom: 2px solid var(--primary-degraded);
  font-size: 1.075em;
}

.nav-references,
.nav-auth {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  color: white;
}

.logo {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.status {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  color: var(--primary);
}

path,
svg {
  fill: currentColor;
}

.status:hover {
  cursor: grab;
  color: var(--primary-degraded);
  transition: color 0.1s ease-in-out;
}

.feedback {
  margin-top: 50px;
  color: white;
  animation: fadeIn 2s ease-in-out;
  background-color: rgba(13, 12, 12, 0.6);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(251, 200, 200, 0.3);
  margin-left: 450px;
  width: 500px;
}

.middle {
  text-align: center;
}

.form-group {
  padding: 10px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 350px;
  border: 2px black;
  border-radius: 4px;
  border-style: solid;
  margin-top: 10px;
  height: 30px;
  background-color: white;
  color: black;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

textarea {
  height: 120px;
  transition: transform 0.3s, box-shadow 0.3s;
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
textarea:hover,
input[type="date"]:hover {
  transform: scale(1.02);
  box-shadow: 0 0 5px white;
}

.submit-button {
  background-color: #4caf50;
  color: white;
  padding: 10px 15px;
  border: 2px green;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 2s;
  margin-top: 20px;
  margin-left: 170px;
}
.submit-button:hover {
  background-color: white;
  color: green;
}
.submit-button:active {
  background-color: black;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
