@charset "utf-8";
/* CSS Document */

.orange {
  color: white;
}

/* rgba(0,117,191,1) Blau*/
/* Silber (rgba(192, 192, 192, 1))*/

.form-container {
  position: relative;
  margin: 30px;
  background-color: #333;
  padding: 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  filter: drop-shadow(2px 2px 0px white) 
          drop-shadow(-2px -2px 0px white)
          drop-shadow(2px -2px 0px white)
          drop-shadow(-2px 2px 0px white);
}

.form-container::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: transparent;
  border: 5px solid white;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  z-index: -1;
}


.heading {
  display: flex;
  text-align: center;
  justify-content: center;
  color: rgba(0,117,191,1);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.c1 {
  display: flex;
  text-align: center;
  justify-content: center;
  color: rgba(251, 251, 251, 1);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.c2 {
  display: block;
  color: rgba(34, 34, 34, 1);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-container .form .input {
  color: #87a4b6;
  width: 100%;
  background-color: #333333;
  border: none;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  border-left: 1px solid transparent;
}

.form-container .form .input:focus {
  border-left: 5px solid #caf438;
}

.form-container .form .textarea {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #333333;
  color: #caf438;
  font-weight: bold;
  resize: none;
  max-height: 150px;
  margin-bottom: 20px;
  border-left: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .textarea:focus {
  border-left: 5px solid #caf438;
}

.form-container .form .button-container {
  display: flex;
  gap: 10px;
}

.form-container .form .button-container .send-button {
  flex-basis: 70%;
  background: #caf438;
  padding: 10px;
  color: #333333;
  text-align: center;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .button-container .send-button:hover {
  background: transparent;
  border: 1px solid #ff7a01;
  color: #caf438;
}

.form-container .form .button-container .reset-button-container {
  filter: drop-shadow(1px 1px 0px #ff7a01);
  flex-basis: 30%;
}

.form-container .form .button-container .reset-button-container .reset-button {
  position: relative;
  text-align: center;
  padding: 10px;
  color: #caf438;
  font-weight: bold;
  background: #001925;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%
  );
  transition: all 0.2s ease-in-out;
}

.form-container
  .form
  .button-container
  .reset-button-container
  .reset-button:hover {
  background: #caf438;
  color: #001925;
}
