@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Exo+2:ital,wght@0,600;0,700;1,700&display=swap');

body {
  background: none !important;
  font-family: 'Inter', sans-serif !important;
}

/* Página: centraliza o card */
.login-page {
  background: linear-gradient(135deg, #8aadc2 0%, #c9d8e3 50%, #b8cdd9 100%);
}

/* Card flutuante com bordas arredondadas */
.login-split {
  width: 100%;
  max-width: 980px;
  min-height: 580px;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

/* Painel esquerdo */
.login-left {
  width: 44%;
  min-width: 360px;
  background: #ffffff;
}

.login-form-wrap {
  width: 100%;
  max-width: 360px;
}

/* Painel direito com imagem */
.login-right {
  flex: 1;
  background-image: url(/assets/bg-group-business-aea8d5e80cc10c8ad00f03f4e24ef52f6908d6b577181075dbc870f7f20e9b1b.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.login-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62, 93, 113, 0.42);
}

/* Tipografia do formulário */
.login-form-wrap h1 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #1a2332;
  letter-spacing: -0.3px;
}

.login-form-wrap p {
  color: #6b7785;
  font-size: 0.9375rem;
}

/* Campos */
.login-form-wrap .input-group {
  border: 1.5px solid #dde1e7;
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.login-form-wrap .input-group:focus-within {
  border-color: #3e5d71;
  box-shadow: 0 0 0 3px rgba(62, 93, 113, 0.12);
}

.login-form-wrap .input-group-text {
  background: #f8f9fb;
  border: none;
  width: 46px;
  justify-content: center;
  color: #6b7785;
  font-size: 0.875rem;
}

.login-form-wrap .form-control {
  height: 50px;
  border: none;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1a2332;
  background: #fff;
}

.login-form-wrap .form-control:focus {
  outline: none;
}

/* Botão */
.login-form-wrap .btn-primary {
  height: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  border-radius: 0.625rem;
  letter-spacing: 0.4px;
}

/* Responsivo */
@media (max-width: 991px) {
  .login-split {
    border-radius: 1.25rem;
    min-height: unset;
  }

  .login-left {
    width: 100%;
    min-width: unset;
    padding: 2.5rem !important;
  }

  .login-form-wrap {
    max-width: 100%;
  }
}
