* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  width: 400px;
}

.form-control:focus {
  border: 1px solid #770B07 !important;
  box-shadow: 1px 1px 10px rgba(119, 11, 7, 0.5) !important;
}

@media screen and (max-width:425px) {
  .card {
    width: 100% !important;
  }
}