* {
  font-family: sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #343a40;
  color: #fff;
  font-family: vw_font !important;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  padding-top: 70px;
}

.title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card {
  width: 300px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border-top: 4px solid #9d0105;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input {
  padding: 15px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #ccc;
  color: #161616;
  font-size: small;
  transition: box-shadow 0.3s;
  border-radius: 5px;
}

input:focus {
  box-shadow: 0 0 4px #9d0105;
  outline: none;
}

.buttons {
  padding-top: 10px;
  width: 100%;
}

.button-align {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.login-button {
  padding: 10px 40px 10px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
  text-decoration: none;
}

.reset-link {
  padding-top: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  /* transition: background-color 0.3s, box-shadow 0.3s, color 0.3s; */
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.login-button {
  background-color: transparent;
  color: #ffffff;
  font-size: large;
  background-color: #9d0105;
}

.login-button:hover {
  background-color: #e7363c;
  color: #fff;
  box-shadow: none;
}

.login-button:active {
  box-shadow: 0 0 10px #e7363c;
}

.reset-link {
  color: #9e9696;
  background-color: transparent;
}

.reset-link:hover {
  color: #dd494d;
}


.login-warning {
  font-size: medium;
  padding: 5px;
  color: #9d0105;
  display: flex;
  justify-content: center;
}

.reset-warning {
  font-size: medium;
  padding: 5px;
  color: #9d0105;
  display: flex;
  justify-content: center;
}

.reset-success {
  font-family: Arial, Helvetica;
  font-size: large;
  color: #079b07;
  display: flex;
  justify-content: center;
}

.changepass_title {
  font-size: small;
  color: #161616;
  display: flex;
  justify-content: center;
}

.master_login {
  color:#9d0105;
  font-size: small;
}

.img-responsive {
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .card {
    width: 100%;
    max-width: 300px;
  }
}