.block {
  position: fixed;
  background-color: black;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 99999;
  opacity: 0.8; }

.login-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center; }
  .login-container .login {
    color: #fff;
    background-color: #81b849;
    padding: 40px 45px 55px;
    opacity: 1; }
    .login-container .login .cross {
      text-align: right;
      margin-bottom: 15px; }
      .login-container .login .cross i {
        color: white; }
    .login-container .login .text {
      text-align: center;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px; }
    .login-container .login .input input {
      width: 100%;
      border-radius: 15px;
      border: none;
      outline: none;
      padding: 7px 12px;
      font-size: 17px;
      margin-bottom: 20px; }
    .login-container .login .submit button {
      background-color: #000;
      border-radius: 40px;
      width: 100%;
      padding: 20px 10px;
      text-align: center;
      cursor: pointer;
      font-size: 17px;
      font-weight: 500;
      color: #fff;
      border: none; }
