body {
  padding: 2rem 0;
  font-family: "Rubik", sans-serif;
  background-color: #171717;
  position: relative;
  line-height: 1.5;
  color: white;
}

.contact-card {
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  border-radius: 5px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem;
  gap: 1rem;
  background-color: #0d0d0d;
}

.contact-card > form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.logo-turing {
  width: 30%;
  margin: auto;
}

h1 {
  font-family: "Arimo", sans-serif;
  width: 100%;
  font-size: 35px;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 1rem;
  width: 100%;
}



input,
textarea {
  padding: 1rem;
  border: none;
  border-radius: 5px;
}

input:focus,
textarea:focus {
  outline: none;
}

label {
  cursor: pointer;
}

#message {
  height: 150px;
}

.error-container {
  color: #efcf4a;
  height: fit-content;
  width: fit-content;
}

.success-container {
  color: #8bd42d;
  height: fit-content;
  width: fit-content;
}

.button {
  padding: 20px 0;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background-color: #262626;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}

.button:hover {
  background-color: #ea7227;
  color: black;
}

.button:disabled {
  opacity: 0.6;
}

.options-container {

  display: flex;
  flex-direction: column;
  align-items: start;
}

.label-option {
width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

.label-option input {
  padding: 0!important;
  border: none;
  border-radius: 0;
}



@media (max-width: 800px) {
  h1 {
    font-size: 25px;
  }
}
