.screenLock {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.msg {
  position: relative;
  width: 792px;
  height: 470px;
  background: linear-gradient(-45deg, rgba(60, 114, 181, 1), rgba(123, 159, 204, 1));
  display: none;
  border: 5px solid #fff;
  border-radius: 7px;
  padding: 7px;
}

h1.msg-title {
  font-size: 30px;
  font-family: Arial;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 20px 0 30px;
  line-height: 30px;
  text-transform: none;
}

.msg-img {
  margin-top: 11px;
  float: right;
}

.msg-text {
  color: #fff;
  font-family: Verdana;
  font-size: 27px;
  padding: 10px;
  margin-top: 40px;
  line-height: 40px;
}

a.submit-popup {
  margin: auto;
  width: 87%;
  font-size: 30px;
  font-family: Verdana;
  font-weight: bold;
  color: #fff;
  display: block;
  background: rgba(60, 101, 181, 1);
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 5px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  margin-top: 30px;
}

a.submit-popup:hover {
  background: #0c0;
}

.exit-cross {
  position: absolute;
  top: 5px;
  right: 5px;
  font-family: Arial;
  font-weight: bolder;
  color: #c00;
  font-size: 30px;
  cursor: pointer;
}