/*Start Global Style*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #e9ebee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
}
.container {
  width: 80%;
  margin: auto;
  padding: 20px;
  height: 100%;
}

.login,
.register {
  width: 50%;
}

/*Start Login Style*/
.login {
  float: left;
  background-color: #fafafa;
  height: 100%;
  border-radius: 10px 0 0 10px;
  text-align: center;
  padding-top: 100px;
}
.login h1 {
  margin-bottom: 40px;
  font-size: 2.5em;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
  border: none;
  background-color: #eeeeef;
}
input[type="checkbox"] {
  float: left;
  margin-right: 5px;
}
.login span {
  float: left;
}
.login a {
  float: right;
  text-decoration: none;
  color: #000;
  transition: 0.3s all ease-in-out;
}
.login label {
  text-align: left;
  justify-content: left;
  align-items: flex-end;
  display: table;
  padding: 5px 5px 10px 0;
}
.login a:hover {
  color: #9526a9;
  font-weight: bold;
}
.login button {
  width: 100%;
  margin: 30px 0;
  padding: 10px;
  border: none;
  background-color: #86bb45;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.login button:hover {
  width: 97%;
  font-size: 22px;
  border-radius: 5px;
}
.login hr {
  width: 30%;
  display: inline-block;
}

.login p {
  display: inline-block;
  margin: 0px 10px 30px;
}
.login ul {
  list-style: none;
  margin-bottom: 40px;
}
.login ul li {
  display: inline-block;
  margin-right: 30px;
  cursor: pointer;
}
.login ul li:hover {
  opacity: 0.6;
}
.login ul li:last-child {
  margin-right: 0;
}
.login .copyright {
  display: inline-block;
  float: none;
}
/*Start Register Style*/
.register {
  float: right;
  background-image: linear-gradient(135deg, #245704 10%, #86bb45 90%);
  height: 100%;
  color: #fff;
  border-radius: 0 10px 10px 0;
  text-align: center;
  padding: 100px 0;
}
.register h2 {
  margin: 30px 0;
  font-size: 50px;
  letter-spacing: 3px;
}
.register p {
  font-size: 18px;
  margin-bottom: 30px;
}
.register .button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
}
.register .button:hover {
  color:#86bb45;
  background-color: #fff;
  cursor: pointer;
}

.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000;
  opacity: 0.5;
}

.alert-dismissible .close:hover {
  opacity: 0.75;
}

.fade {
  opacity: 1;
  transition: opacity 0.15s linear;
}

.show {
  display: block;
}

@media (max-width: 992px) {
  .container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
  }
  .login {
    float: none;
    width: 100%;
    margin-bottom: 25px;
    height: auto;
  }
  .register {
    float: none;
    width: 100%;
    height: auto;
  }
}
