@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: rgb(167, 16, 37);
  background: -moz-linear-gradient(20deg, #fff, #01cc00, #0001fa  70%);
  background: -webkit-linear-gradient(20deg, #fff, #01cc00, #0001fa 70%);
  background-image: linear-gradient(20deg, #fff, #01cc00, #0001fa 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a71025", endColorstr="#be7716", GradientType=1);
  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: #fff !important;
  border: 1px solid #fff !important;
}

.card-header img {
  width: 270px;
}

.btn-dark {
  background-color: #333333 !important;
  color: #fff !important;
  border: 2px solid #333333;
  transition: 0.4s ease-in-out;
}

.btn-dark:hover {
  color: #fff !important;
  background: #0001fa !important;
  border-color: #0001fa !important;
}

.text-pink {
  color: #f71735 !important;
}

.text-primary:hover {
  color: #f71735 !important;
  cursor: pointer;
}

.Box {
  background: #fdfffc !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;
  }
}
