@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700,900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background: #374151;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: 700;
}

label {
  color: #182b3a !important;
  font-weight: 500;
}

.card-header {
  text-align: center;
  background: #1f2937 !important;
  border: 1px solid #1f2937 !important;
}

.card-header img {
  width: 270px;
}

.btn-dark {
  background-color: #374151 !important;
  color: #ebcb8b !important;
  border: 2px solid #374151;
  font-weight: 900;
  font-size: 18px;
  transition: 0.4s ease-in-out;
}

.btn-dark:hover {
  color: #374151 !important;
  background: #ebcb8b !important;
}

.text-pink {
  color: #f71735 !important;
}

.text-primary:hover {
  color: #f71735 !important;
  cursor: pointer;
}

.Box {
  background: #eceff4 !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 600px) {
  .Box {
    width: 340px;
  }
}
