@media (max-width: 600px) {
  .bg {
    background-image: url("../../images/Background-Small.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #card {
    background: white;
    border-radius: 21px;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.65);
    height: 270px;
    margin: auto;
    width: 90%;
  }
  
  }
@media (min-width: 600px) {
  .bg {
    background-image: url("../../images/Background-Large.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #card {
    background: white;
    border-radius: 21px;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.65);
    height: 270px;
    margin: auto;
    width: 350px;
  }
}
body, html {
  height: 100%;
}
a {
  text-decoration: none;
}

label {
  font-family: "Raleway", sans-serif;
  font-size: 10pt;
}
#salah-pass {
  color: #cd0a0a;
  font-family: "Raleway", sans-serif;
  font-size: 9pt;
  text-align: center;
}
#card-content {
  padding: 12px 44px;
}
#card-title {
  font-family: "Raleway Thin", sans-serif;
  padding-bottom: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 16pt;
}
#credit {
  color: black;
  font-family: "Raleway", sans-serif;
  font-size: 9pt;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
}
#submit-btn {
  background: -webkit-linear-gradient(top, #BE1E2D, #BE1E2D);
  border: none;
  border-radius: 21px;
  box-shadow: 3px 3px 5px #797878;
  cursor: pointer;
  color: white;
  font-family: "Raleway SemiBold", sans-serif;
  height: 40px;
  margin: 0 auto;
  margin-top: 15px;
  transition: 0.25s;
  width: 100%;
}
#submit-btn:hover {
  box-shadow: 0px 0px 8px #BE1E2D;
}
.form {
  align-items: left;
  display: flex;
  flex-direction: column;
}
.form-border {
  background: #797878;
  height: 0.1em;
  width: 100%;
}
.form-content {
  background: white;
  border: none;
  outline: none;
  padding-top: 14px;
  width: 100%;
}
