.login {
  background: white;
  /* width: 30%; */
  min-width: 500px;
  height: 500px;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

img {
  height: 40px;
}

.logo {
  margin-top: 20px;
}
.flex-column {
  margin-top: 50px;
}
.heading {
  font-weight: 700;
  color: #525252;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 36px;
}

form {
  width: 60%;
}
.form-label {
  font-weight: 600;
  color: #3c3a3c;
}

.form-control {
  border: 1px solid #cfd9e0;
}
.form-check {
  margin-top: 22px;
}

.btn {
  width: 100%;
  margin-top: 30px;
}

.form-check-input,
.form-check-label {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #cfd9e0;
  border-color: #cfd9e0;
}
.form-check-input {
  background-color: #cfd9e0;
  border: none;
}
.form-check-input:focus {
  border: none;
  box-shadow: none;
}

.form-check-input:checked[type="checkbox"] {
  content: url(../assets/check.svg);
}
.d-none
{
  display: none !important;
}
.d-block
{
  display: block !important;
}
.was-validated
{
  border-color: #dc3545;
}