.row.justify-content-center{
    max-width: 600px;
    display: block;
    margin: auto;
    padding: 15px;
    background-color: transparent;
}
.login label {
  color: #000;
}
.login input {
  border-radius: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 16px 16px 16px 16px;
}
.login button {
  border-radius: 35px;
}
.card-header{
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.login-logo{
    display: block;
    margin: 30px auto 20px;
    max-width: 600px;
    width: 100%;
}
.login-logo img{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}
.col-form-label.text-right{
    font-size: 16px;
    margin-top: 5px;
}
.login-title{
    color: #cecece;
    font-family:Roboto,sans-serif;
    text-align: center;
}
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}
