* {
  box-sizing: border-box;
  margin: 0;
}

body {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(../img/images_desktop_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  /* background-color: red; */
}

.her {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  /* background-color: green; */
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  align-items: center;
  border: 1px #e6e6e6 solid;
  border-radius: 15px;
  margin-top: 100px;
}
.contain {
  padding: 30px 40px 30px 40px;
  width: 480px;
}
.header_logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 70px;
}
img {
  width: 50%;
  height: 70px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.input_text {
  height: 55px;
  width: 100%;
  border-radius: 15px;
  outline: none;
  border-style: none;
  background-color: #f2f2f2;
  margin-bottom: 25px;
  padding: 25px;
}

.submit {
  width: 100%;
  cursor: pointer;
  height: 55px;
  color: white;
  border-style: none;
  outline: none;
  border-radius: 15px;
  background-color: rgb(0, 131, 62);
  font-size: large;
  font-weight: 500;
  margin-bottom: 25px;
}

.forgot_link {
  margin-bottom: 40px;
}

a {
  text-decoration: none;
  color: rgb(0, 131, 62);
}
.reg_link {
  font-size: large;
  font-weight: bold;
  margin-bottom: 40px;
}
.err {
  margin-bottom: 20px;
  background-color: #c30000;
  border-radius: 3px;
  color: white;
  width: 100%;
  height: 20px;
  padding: 5px 0px 30px 10px;
}

@media all and (max-width: 500px) {
  .contain {
    width: 400px;
  }
}

@media all and (max-width: 375px) {
  .contain {
    width: 300px;
  }
}
