.login_container {
  width: 100%;
  height: calc(100vh - 136px);
  background-color: #fff;
  background-image: url("../static/login_bg.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.login_form {
  width: 600px;
  height: 400px;
  border-radius: 10px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 40px 0;
  text-align: center;
}

.login_form h6 {
  width: 100%;
  font-size: 30px;
  color: #13408d;
  text-align: center;
  margin-bottom: 30px;
}

.login_form_list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform: translateX(-30px);
}

.login_form_list label {
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  width: 100px;
}

.login_form_list input {
  height: 45px;
  width: 220px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px;
}

.login_form_list input::placeholder {
  color: #aaa;
}

.submit {
  width: 240px;
  height: 45px;
  background-image: linear-gradient( 135deg, #ABDCFF 10%, #0396FF 100%);
  box-shadow: #ABDCFF 1px 4px 3px;
  border: none;
  color: #fff;
  margin: 0 auto;
  line-height: 45px;
  border-radius: 5px;
}

.my-title{
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #13408d;
  text-align: center;
}