@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700");

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #383838;
}
*::-moz-selection {
  color: white;
  background: pink;
}
*::selection {
  color: white;
  background: pink;
}
* {
  box-sizing: border-box;
}
/* Login */
.login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
@media (min-width: 380px) {
  .login {
    padding: 0;
  }
}
/* Login form */
.login__form {
  position: relative;
  width: 350px;
  height: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: 2;
}
.login__title {
  margin: 0 0 15px 0;
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}
.login__form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.login__input {
  display: inline-block;
  margin: 0;
  padding: 7px 35px 7px 7px;
  color: white;
  text-align: center;
  background-color: transparent;
  vertical-align: middle;
  white-space: normal;
  line-height: 1;
  border: 2px solid white;
  border-radius: 20px;
}
.login__input::-webkit-input-placeholder {
  color: white;
}
.login__input::-moz-placeholder {
  color: white;
}
.login__input:-ms-input-placeholder {
  color: white;
}
.login__input:-moz-placeholder {
  color: white;
}
.login__input:focus {
  outline: none;
}
.login__submit {
  position: absolute;
  top: 4px;
  right: 4px;
  height: calc(100% - 8px);
  padding: 5px;
  color: rgba(0, 0, 0, 0.3);
  background-color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border: 0;
  border-radius: 20px;
  line-height: normal;
  overflow: visible;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}
.login__submit:focus {
  outline: none;
}
/* Animated plane background */
.login__background {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
}
.planePath {
  stroke: pink;
  stroke-width: 0.1%;
  stroke-width: 0.5%;
  stroke-dasharray: 1% 2%;
  stroke-linecap: round;
  fill: none;
}
.fil1 {
  fill: #d9dada;
}
.fil2 {
  fill: #c5c6c6;
}
.fil4 {
  fill: #9d9e9e;
}
.fil3 {
  fill: #aeafb0;
}
