@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.loginprin, .loginprin2{
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(270deg, #001f3f, #004080, #001f3f, #0059b3);
  background-size: 800% 800%;
  animation: gradientFlow 20s ease infinite;
  display: flex;
  justify-content: center;
  
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.login-container {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 420px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  animation: fadeIn 1.2s ease;
}

.card-header-login,
.card-footer-login {
  background: transparent;
  border: none;
 
}
	
.card-header-login h3
 {
	  font-size: 1.6rem;
	  margin-bottom: 1.5rem;
}

.logo-img {
  width: 110px;
  height: 110px;
  border-radius: 35%;
  background-color: #ffffff;
  padding: 0.6rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  object-fit: contain;
}

.input-custom {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.input-prepend-custom,
.input-append-custom {
  padding: 0 0.8rem;
  color: #ffffff;
  background: transparent;
  display: flex;
  align-items: center;
}

.input-custom .input-group-text i {
  font-size: 1rem;
}

.form-control-login {
  flex: 1;
  background: #fffdd0; 
  border: none;
  padding: 0.75rem 1rem;
  color: #001f3f;
  font-weight: 600;
  font-size: 1rem;
}

.form-control-login::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-control-login:focus {
  outline: none;
  background-color: #ffffff;
}





.card-footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .login-container {
    padding: 1.5rem;
  }

  .card-header h3 {
    font-size: 1.3rem;
  }

  .logo-img {
    width: 90px;
    height: 90px;
  }

 
}
