body {
  margin: 0;
  padding: 10px;
  background-color: #efefef;
  font-size: 16px;
  color: #777;
  font-family: verdana;
  font-weight: 300;
}

#login-box {
  position: relative;
  margin: 5% auto;
  height: 400px;
  width: 600px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.left-box {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 40px;
  width: 300px;
  height: 400px;
}

h1 {
  margin: 0 0 20px 0;
  font-weight: 300;
  font-size: 28px;
}

input[type="text"],
input[type="number"],
input[type="password"] {
  display: block;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 4px;
  width: 220px;
  height: 32px;
  border: none;
  outline: none;
  border-bottom: 1px solid #aaa;
  font-family: verdana;
  font-weight: 400;
  font-size: 15px;
  transition: 0.2 ease;
}
input[type="submit"] {
  margin-bottom: 28px;
  /* width: 120px; */
  width: 100%;
  height: 32x;
  background-color: #f44336;
  border: none;
  border-radius: 2px;
  color: #fff;
  font-family: verdana;
  text-transform: uppercase;
  transition: 0.2s ease;
  cursor: pointer;
  padding: 9px;
  text-align: center;
}
input[type="submit"]:hover,
input[type="submit"]:focus {
  background-color: #ff5722;
  transition: 0.2s ease;
  padding: 10px;
}
.right-box {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  padding: 40px;
  width: 300px;
  height: 400px;
  background-image: url("./02.png");
  background-size: cover;
  background-position: center;
}

.div-or {
  position: relative;
}

.or {
  position: absolute;
  top: 200px;
  right: 307px;
}

.border {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #efefef;
  border-radius: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  top: 190px;
  right: 300px;
}

.right-box .signinwith {
  display: block;
  margin-bottom: 40px;
  font-size: 28px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
button.social {
  margin-bottom: 20px;
  width: 220px;
  height: 36px;
  border: none;
  border-radius: 2px;
  color: #fff;
  font-family: verdana;
  font-weight: 500;
  transition: 0.2s ease;
  cursor: pointer;
}

.facebook {
  background-color: #32508e;
}
.Twitter {
  background-color: #55acee;
}
.Google {
  background-color: #dd4b39;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #111111;
  width: 25%;
  border-radius: 5px;
  /* margin-top: 20px; */
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111111;
  border-radius: 5px;
  color: magenta;
}
