@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nova+Round&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira+Stencil+One&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(0deg, #091221 0%, #12233E 100%);
  color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}

.textheading {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.textdetail {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.login-card {
  background: linear-gradient(0deg, #091221 0%, #12233E 100%);
  border-radius: 14px;
  padding: 24px;
  width: 100%;
  min-width: 600px;
  border: 1px solid #b6b6b6;
}

.login-card h5 {
  color: #ffffff;
  text-align: center;
}

.form-label {
  color: #ffffff;
}

.form-control {
  background-color: #1c2b40;
  border: none;
  color: #ffffff;
  height: 50px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  border-radius: 8px;
}

.form-control:focus {
  background-color: #1c2b40;
  box-shadow: none;
  color: #ffffff;
}

.form-control::placeholder {
  color: #a0a0a0;
  
}

.btn-primary {
  background-color: #2563EB;
  border: none;
  width: 100%;
  padding: 10px;
  height: 50px;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  box-shadow: none;
}

.logo {
  text-align: center;
  margin-bottom: 50px;
}

.logo img {
  max-width: 150px;
}
