
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;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&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.input-container {
  position: relative;
  /* margin: 20px; */
  margin-bottom: 20px;
  margin-top: 10px;
}

.animated-input {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  /* width: 200px; */
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  padding-right: 30px; /* Adjust padding for the eye icon */
  outline: #012670;
}

.eye-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.animated-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 16px;
  color: #777;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  background-color: white;
  padding: 0 5px;
}

.animated-input:focus {
  border: 1px solid #012670;
  box-shadow: 0 0 10px rgba(7, 83, 145, 0.3);
}

.animated-input:focus + .animated-label,
.animated-input:not(:placeholder-shown) + .animated-label {
  top: -12px;
  font-size: 14px;
  color: #012670;
  font-weight: 600;
}

.card.login-card {
  width: 40%;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px #8080803b;
  border: none;
}

.login-container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
h3.card-heading {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
}
p.login-pg {
  color: #969696;
  font-size: 16px;
}
.check-container {
text-align: left;
margin-bottom: 25px;
}
.form-check-input[type=checkbox]:checked{
background-color: #012670;
border-color: 1px solid #012670;
box-shadow: 0 0 0 0.25rem #012670(13,110,253,.25);
}

@media (max-width: 768px){
.card.login-card {
  width: 100%;
}
}
@media (min-width: 768px) and (max-width: 1024px){
.card.login-card {
  width: 70%;

}}