::-webkit-input-placeholder {
  color: skyblue;
}

:-ms-input-placeholder {
  color: skyblue;
}

::-ms-input-placeholder {
  color: skyblue;
}

::placeholder {
  color: skyblue;
}

.contact--info {
    flex: 1;
    background-color: #0c0c0c;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.75);
    height: 460px;
    margin: 20px 20px 0 -10px;
    overflow:auto;
}

.contact--info .form {
  margin: -20px 0 0 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.contact--info .form h2{
margin: 30px 0 0 0;
}

.form form {
 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form form #name, .form form #email, .form form #message {
  width: 70%;
  background: transparent;
  border: none;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid skyblue;
  -webkit-transition: 600ms;
  transition: 600ms;
  color: skyblue;
}

.contact--info .form form #name:focus, .form form #email:focus, .form form #message:focus {
  width: 52%;
}

.contact--info .form form #btn {
  position: relative;
  border: none;
  background: transparent;
  color: skyblue;
  padding: 5px;
  border-radius: 5px;
  border: 2px solid skyblue;
  -webkit-transition: 600ms;
  transition: 600ms;
}

.contact--info .form form #btn:hover {
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 10px skyblue,
 0 0 10px skyblue;
          box-shadow: inset 0 0 10px skyblue,
 0 0 10px skyblue;
}
/*# sourceMappingURL=style.css.map */