#view-login {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./bg.jpg");
  height: 100vh;
}
#view-login header {
  background-color: rgba(0, 0, 0, 0.344);
  padding: 50px;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  top: 0;
  width: 100%;
  position: fixed;
}
#view-login header h1 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 20px;
  text-align: center;
}
#view-login .main-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#view-login .main-wrapper form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 60px);
  max-width: 300px;
}
#view-login .main-wrapper form .form-fields {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.6);
}
#view-login .main-wrapper form .form-fields h2 {
  width: 100%;
  margin-bottom: 25px;
  font-size: 20px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  text-align: center;
}
#view-login .main-wrapper form .form-fields .input-group {
  margin-bottom: 20px;
}
#view-login .main-wrapper form .form-fields .input-group label {
  margin-bottom: 10px;
  display: block;
  font-weight: 800;
}
#view-login .main-wrapper form .form-fields .input-group input {
  border: 1px solid #c3c3c3;
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 5px;
}
#view-login .main-wrapper form .form-fields button {
  background-color: #176a6f;
  color: #fff;
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 13px;
}

/* body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
}

form {
    margin: 20px 0;
}

input {
    margin: 10px;
    padding: 10px;
    width: 200px;
}

button {
    padding: 10px 20px;
    cursor: pointer;
}

a {
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    color: blue;
} */