* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #e5e5e5;
}

.container {
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.login_wrapper {
  /* border: 1px solid red; */
  width: 900px;
  display: flex;
}
.gerb-container {
  /* border: 1px solid blue; */
  width: 45%;
  height: 700px;
  background-image: url("./img/white.svg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.btn-container {
  /* border: 1px solid green; */
  width: 55%;
  height: 100%;
  height: 700px;
  /* background-image: url('./img/black.svg'); */
  background-repeat: no-repeat;
  background-color: #011947;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.firstwrap {
  margin-top: -90px;
}
#img1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.text {
  text-align: center;
  width: 100%;
  padding: 4px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 22px;
  color: #011947;
}
.text1 {
  text-align: center;
  width: 100%;
  padding: 4px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  margin-top: 10px;
  color: #011947;
}
.imgdiv {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#btn-one {
  width: 330px;
  height: 38px;
  color: white;
  background-color: #011947;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  padding: 2px;
  border: 1px solid #1cb3ef;
  border-radius: 20px;
  margin: 10px;
  outline: none;
}
#btn-two {
  width: 330px;
  height: 38px;
  color: white;
  background-color: #011947;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  padding: 2px;
  border: 1px solid #1cb3ef;
  border-radius: 20px;
  margin: 10px;
  outline: none;
  background: linear-gradient(#1db5f0, #109adf);
}

#btn-two:hover {
  box-shadow: 0px 0px 6px #109adf;
  cursor: pointer;
  background: linear-gradient(#1db5f0, #109adf);
}
#btn-one:hover {
  cursor: pointer;
  box-shadow: 0px 0px 6px #109adf;
  background: linear-gradient(#1db5f0, #109adf);
}
.inp {
  width: 310px;
  height: 38px;
  margin: 10px;
  border-radius: 20px;
  padding-left: 20px;
  border: none;
  outline: none;
  font-size: 16px;
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* Standart */
  background-size: 12px;
}

select.inp {
    line-height: 38px;
    box-sizing: border-box !important;
}

/* responsive  */

@media screen and (min-width: 200px) and (max-width: 900px) {
  .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .login_wrapper {
    display: block;
  }
  .gerb-container {
    width: 100%;
    height: 350px;
  }
  .btn-container {
    width: 100%;
    height: 350px;
    align-items: flex-start;
    padding-top: 30px;
  }
  .firstwrap {
    margin-top: -30px;
    margin-top: 0;
  }
  #btn-one {
    width: 270px;
  }
  #btn-two {
    width: 270px;
  }
  .inp {
    width: 250px;
  }
  .text {
    font-size: 18px;
  }
  .text1 {
    font-size: 14px;
  }
  #gerb {
    width: 200px;
  }

}
