body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #505050;
}

.content {
  height: 100vh;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
}

.content-right {
  width: 100%;
  background-color: #F4F6FA;
  padding: 50px;
  row-gap: 50px;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.content-left {
  display: none;
}

.btn-registro {
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.3rem 1.8rem 1.2rem 1.8rem;
  font-size: 18px;
  border: 1px solid #6E78DA;
  border-radius: 6px;
  color: #FFF;
  background-color: #6E78DA;
  position: relative;
  width: 40%;
  text-align: center; 
  margin-top: 20px;
  line-height: 1;
}
.btn-registro:hover {
  background-color: #5B66CD;
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 6%);
  box-shadow: 0 4px 10px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 6%);
}

.btn-login {
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.3rem 1.6rem 1.2rem 1.6rem;
  font-size: 18px;
  border-radius: 6px;
  color: #6E78DA;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px 0 rgb(100 100 100 / 30%);
  box-shadow: 0 1px 4px 0 rgb(100 100 100 / 30%);
  border: 1px solid #dee2e6 !important;
  position: relative;
  width: 40%;
  text-align: center; 
  margin-top: 20px;
}

.btn-login:hover {
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 6%);
  box-shadow: 0 4px 10px rgb(0 0 0 / 12%), 0 1px 4px rgb(0 0 0 / 6%);
  border: 1px solid #dee2e6;
}

.logo {
  width: 160px;
}

h1 {
  font-size: 38px;
}

h1 span {
  font-size: 48px; 
  display: block;
  color: #044478;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  text-align: left;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

@media (min-width: 991px) {
  .content-right {
    background-color: #F4F6FA;
    width: 40%;
  }
  .content-left {
    background: url("../../img/landing/login-bg.jpg");
    background-size: cover;
    width: 60%;
    background-color: #F4F6FA;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
  }
}