body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: sans-serif, Helvetica, Arial;
  color: white;
}

.container {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-rows: 30% 30% 40%;
  justify-content: center;
}

.img-container {
  display: grid;
  justify-content: center;
  align-content: center;
}

.bg-image {
  width: 600px;
  height: 210px;
  background: url("../images/vcd.jpg") no-repeat center;
  background-size: contain;
}

.legend {
  display: grid;
  grid-template-rows: 10% 40% 50%;
  justify-content: center;
  align-content: center;
  text-align: center;
  row-gap: 1rem;
  /* border: 1px solid cyan; */
}

.text-container {
  max-width: 500px;
  /* border: 1px solid white; */
}

.text {
  font-weight: lighter;
  line-height: 1.5;
}

.title {
  /* color: #cacaca; */
}

.login-container {
  /* border: cyan 1px solid; */
  display: grid;
  justify-content: center;
  align-content: flex-start;
}

.form {
  /* border: red 1px solid; */
  padding-top: 0.5rem;
  width: 250px;
  text-align: center;
}

button {
  outline: 0;
  border: 0;
  background: none;
  margin: 25px;
  padding: 10px 35px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  cursor: pointer;
  /* border-radius: 50px; */
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid #9b9b9b;
  color: #9b9b9b;
}

@media (max-width: 700px) {
  body {
  }
  .container {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: 20% 45% 35%;
  }

  .bg-image {
    /* border: 1px solid white; */
    width: 320px;
    height: 100px;
  }

  .legend {
    /* border: white 1px solid; */
    grid-template-rows: 10% 40% 50%;
    justify-content: center;
    align-content: center;
    text-align: center;
    row-gap: 1rem;
  }

  .title {
    font-size: 2.2em;
  }

  .text-container {
    padding: 0 4rem 0 4rem;
  }

  .text {
    font-size: 12px;
  }
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
}

.form__field {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  /* color: #fff; */
  color: #9b9b9b;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 0.75rem;
  /* color: #9b9b9b; */
  color: #fff;
}

.btn-submit {
  margin-top: 10px;
  padding: 10px;
}
