@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Regular.ttf);
}

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

a {
  color: #23004C;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  background: url('../images/bg.jpg') no-repeat center fixed;
  background-size: cover;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.header {
  padding: 20px 0;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.cover {
  padding: 0 15px;
}

.cover img {
  max-width: 100%;
}

.box-login {
  padding: 20px;
}

.card-login {
  display: flex;
  flex-direction: column;
  height: 297px;
  width: 440px;
  max-width: 100%;
  background-color: #fff;
  color: #23004C;
  border-radius: 20px;
  box-shadow: 0 3px 3px -2px rgba(0,0,0,0.2), 
    0 3px 4px 0 rgba(0,0,0,0.14), 
    0 1px 8px 0 rgba(0,0,0,0.12);
}

.card-login h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.card-body {
  flex: 1;
  padding: 20px 40px;
}

.card-footer {
  font-size: 9px;
  padding: 20px 40px;
}

.button {
  width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background-color: #23004C;
  box-shadow: 0 3px 1px -2px rgba(82,92,163,0.2), 
    0 2px 2px 0 rgba(82,92,163,0.14), 
    0 1px 5px 0 rgba(82,92,163,0.12);
}

.button:hover {
  background-color: #3f0185;
}

.button span {
  margin-right: 20px;
}

/* Responsive */
@media (min-width: 1200px) {
  .container {
      max-width: 1200px;
  }
}

@media (min-width: 768px) {
  
}

@media (min-width: 576px) {
  
}