/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

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

body {
  font-family: "Acherus Grotesque Regular", sans-serif;
  overflow-x: hidden;
}

/* Welcome Section Styles */
.welcome-section {
  background-image: linear-gradient(60deg, #38bdf8 0.2%, #1e40af 99.9%);

  position: relative;
  overflow: hidden;
}

.welcome-content {
  z-index: 10;
  position: relative;
  max-width: 500px;
  padding: 2rem;
}

/* Adicionando estilos para a logo da empresa */
.company-logo {
  margin-bottom: 2rem;
}

.company-logo img {
  max-width: 150px;
  height: auto;
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
}

.company-logo img:hover {
  transform: scale(1.05);
}

/* Responsividade para a logo */
@media (max-width: 768px) {
  .company-logo img {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .company-logo img {
    max-width: 100px;
  }
}

.welcome-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.welcome-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: "Bahnschrift", sans-serif;
}

.welcome-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 400px;
  margin: 0 auto;
}

/* Geometric Shapes */
.geometric-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  background: rgba(59, 130, 246, 0.3);
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 100px;
  left: -50px;
  background: rgba(96, 165, 250, 0.2);
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 100px;
  background: rgba(147, 197, 253, 0.15);
}

/* Form Section Styles */
.form-section {
  background-color: #f8fafc;
  padding: 2rem;
}

.login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 450px;
  border: none;
}

.card-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
}

/* Input Styles */
.input-group {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.input-group:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-group-text {
  border: none;
  padding: 1rem;
}

.form-control {
  border: none;
  padding: 1rem;
  font-size: 1rem;
  background: transparent;
}

.form-control:focus {
  box-shadow: none;
  background: transparent;
}

.form-control::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* Button Styles */
.btn-primary {
  background: #1e2d6b;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #00aeef;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary {
  border: 2px solid #8d8d8d;
  border-radius: 12px;
  color: #8d8d8d;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Bahnschrift", sans-serif;
}

.btn-outline-secondary:hover {
  background: #f9fafb;
  border-color: #00aeef;
  color: #1e2d6b;
}

/* Toggle Password Button */
#togglePassword,
#toggleRegisterPassword,
#toggleConfirmPassword {
  background: transparent;
  border: none;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0 1rem;
}

/* Checkbox Styles */
.form-check-input:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

/* Links */
a {
  color: #3b82f6;
  font-weight: 500;
}

a:hover {
  color: #1e40af;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .welcome-section {
    min-height: 40vh;
  }

  .welcome-title {
    font-size: 2.5rem;
  }

  .welcome-subtitle {
    font-size: 1.25rem;
  }

  .form-section {
    min-height: 60vh;
  }

  .login-card {
    margin: 1rem;
  }

  .card-body {
    padding: 2rem !important;
  }
}

@media (max-width: 576px) {
  .welcome-title {
    font-size: 2rem;
  }

  .welcome-subtitle {
    font-size: 1.1rem;
  }

  .welcome-description {
    font-size: 0.9rem;
  }

  .card-body {
    padding: 1.5rem !important;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
  }

  .shape-3 {
    width: 100px;
    height: 100px;
  }
}

/* Animation for shapes */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.shape-1 {
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  animation: float 7s ease-in-out infinite;
}
