body {
  font-family: "Inter", sans-serif;
  color: #0f172a; /* Texto forte: #0F172A */
  background-color: #f8fafc; /* Fundo claro: #F8FAFC */
}

.login-container {
  min-height: 100vh;
  /* Cor principal: #0040E9 (azul) */
  background: linear-gradient(135deg, #0040e9 0%, #002db3 100%);
  position: relative;
  overflow: hidden;
}

.login-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
}

.form-container {
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 27px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}

.form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.15);
}

.text-gray-800,
h1 {
  color: #0f172a !important; /* Texto forte: #0F172A */
}

.text-gray-600,
p {
  color: #0f172a !important; /* Texto forte: #0F172A */
}

.input-group label {
  color: #0f172a !important; /* Texto forte: #0F172A */
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 350px;
  z-index: 9999;
  transform: translateY(-100px);
  transition: transform 0.3s ease-out;
}

.toast.show {
  transform: translateY(0);
}

.input-group {
  position: relative;
  transition: all 0.3s ease;
}

.input-group input {
  border: 2px solid #e2e8f0; /* Bordas: #E2E8F0 */
  transition: all 0.3s ease;
}

.input-group input:focus {
  /* Cor principal foco: #0040E9 */
  border-color: #0040e9;
  box-shadow: 0 0 0 3px rgba(0, 64, 233, 0.1);
}

.gradient-button {
  /* Cor principal botão: #0040E9 com destaque em Roxo: #9321FF */
  background: linear-gradient(90deg, #0040e9 0%, #9321ff 100%);
  transition: all 0.3s ease;
}

.gradient-button:hover {
  box-shadow: 0 8px 15px rgba(147, 33, 255, 0.3);
  transform: translateY(-2px);
}

.gradient-button:active {
  transform: translateY(0);
}

.success-message {
  border-left-color: #10b981 !important; /* Cor de sucesso: #10B981 */
}

.text-green-500 {
  color: #10b981 !important;
}

.bg-green-500 {
  background-color: #10b981 !important;
}

.bg-green-100 {
  background-color: #f8fafc !important; /* Fundo respiro para alertas: #F8FAFC */
  border-color: #10b981 !important;
}

.border-green-500 {
  border-color: #10b981 !important;
}

.text-green-600 {
  color: #10b981 !important;
}

.text-green-700 {
  color: #0f172a !important; /* Texto forte para sucesso */
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-icon {
  animation: float 5s ease-in-out infinite;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.success-message {
  transition: all 0.3s ease-in-out;
}

#progress-bar {
  transition: width 1s linear;
}
