html, body {
  margin: 0;
  padding: 0;

  height: 100%;
}

body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #dedede;
  border-radius: 7px;
  margin-top: 30px;
  font-family: 'Open Sans', sans-serif;
}

img.logo {
  width: 50%;
}

.card-header > h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}

.flex-colum-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 2px;
  margin: 1rem;
  padding: 30px 10px;
  position: relative;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.card-header {
  width: fit-content;
}

label {
  font-weight: 300;
  font-size: .8em;
}

input {
  border: 1px solid #dedede;
  outline: none;
  padding: 5px;
  border-radius: 5px;
}

.form-check {
  width: 270px;
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.form-check > input {
  width: fit-content !important;
}

button.btn {
  width: 262px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 5px 0;
  border: 1px solid #dedede;
  border-radius: 5px;
  outline: none;
}

button.btn:hover {
  cursor: pointer;
}

/* ************************************************ */
/* ************************************************ */
/* ************************************************ */

.card-1 {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.card-1:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-2 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.card-3 {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.card-4 {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-5 {
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.card-body > form,
.card-body > form > .form-group {
  width: fit-content;
}

.card-body > form input {
  width: 250px;
}