/* The overlay (background) */
.modal-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Show the modal */
.modal-overlay.show {
  display: block;
}

/* The modal box */
.modal-box {
  background: white;
  width: 90%;
  max-width: 700px;
  margin: 100px auto;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
  position: relative;
}

/* Close button */
.modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

/* ------------------  modal login form --------------------------- */

.modal-box .login-left {
  margin: 0;
  padding: 0;
  padding-top: 50px;
  text-align: center;
  background-color: transparent;
  color: lightblue;
  font-size: 2rem;
}
.modal-box .login-left i {
  font-size: 6rem;
}

/*assign full width inputs*/
        input[type=text],
        input[type=password] {
            width: 100%;
            padding: 12px 20px;
            margin: 8px 0;
            display: inline-block;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }
        input[type=checkbox] {
          margin-top: 10px;
          margin-right: 10px;
        }
        /*set a style for the buttons*/
        button {
            background-color: lightblue;
            color: darkblue;
            padding: 14px 20px;
            margin: 8px 0;
            border: none;
            cursor: pointer;
            width: 45%;
        }
        button#login-btn {
          float: right;
        }

        /* set a hover effect for the button*/
        button:hover {
            opacity: 0.8;
        }

        /*set extra style for the cancel button*/
        .cancelbtn {
            padding: 14px 28px;
            background-color: red;
            color: white;
        }
/* ---------------- end  modal login form --------------------------- */
