.login_wrap {
    width: 100%;
    height: 1200px;
    background-color: rgba(76, 140, 195, .9);
    position: relative;
  }
  .login {
    width: 25%;
    min-width:350px;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    padding: 30px;
    font-size: 16px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  @media (max-width: 760px) {
    .login {
      width: 80%;
    }
  }
  .title {
    width: 100%;
    font-size: 24px;
    text-align: center;
    letter-spacing: 4px;
  }
  
  .name {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    text-align:center;
  }
  
  .IDcard {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
  
  .form_label {
    font-size: 14px;
    color: #000;
    width: 80px;
    text-align: right;
  }
  
  input {
    width: 70%;
    height: 30px;
    background-color: #e8f0fe;
    border: none;
    border-radius: 5px;
    padding-left: 10px;
  }
  
  .btn_wrapper {
    display: flex;
    justify-content: space-around;
  }
  .btn_wrapper button {
    background-color: #409eff;
    /* width: 120px; */
    border: none;
    flex: 1;
    margin: 50px 10px 30px;
    font-size: 16px;
    padding: 10px;
  
  }
