@font-face {
  font-family: 'Inter';
  src: url('../../Assets/fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../../Assets/fonts/inter/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../../Assets/fonts/inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.login-body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  min-width: 320px;
}

.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

/* Desktop: 2 colunas */
@media (min-width: 992px) {
  .login-layout {
    grid-template-columns: 420px 1fr;
  }
}

.login-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  padding: 28px;
}

/* Logo */
.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo {
  width: 55%;
  max-width: 220px;
  height: auto;
}

/* Conteúdo */
.form-wrap {
  margin-top: 26px;
}

.title {
  margin: 0 0 18px 0;
  font-size: 24px;
  font-weight: 700;
}

/* Campos */
.field {
  margin-bottom: 14px;
}

.input-group {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: stretch;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.input-group .addon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.input-group .input {
  border: 0;
  outline: 0;
  padding: 12px 12px;
  font-size: 14px;
  width: 100%;
}

.addon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.addon-button:focus {
  outline: 2px solid #14004C;
  outline-offset: -2px;
}

#iconeSenha {
  transition: transform 0.12s ease;
}

.addon-button:hover #iconeSenha {
  transform: scale(1.08);
}

/* Linha lembrar */
.remember-row {
  display: flex;
  justify-content: flex-end;
  margin: 8px 0 16px 0;
}

.remember {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  user-select: none;
}

.remember input {
  width: 16px;
  height: 16px;
  accent-color: #14004C;
}

/* Botão */
.btn-primary {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: #FDAE08;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 1px 3px 5px 1px rgb(206, 206, 206);
}

.btn-primary:hover {
  filter: brightness(0.95);
}

/* Coluna imagem */
.login-right {
  display: none;
}

@media (min-width: 992px) {
  .login-right {
    display: block;
  }
}

.bg-login {
  background-image: url("../../img/Login/img_portal_bi_login.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f4f4f4;
}

.divCardAlert {
    display: flex;
    width: auto;
}

.alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -200px);
  width: 50%;
  padding: 1rem;
  border-radius: 5px;
  border-left: 4px solid;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1000;
}

.alert.show {
  transform: translate(-50%, 0);
  opacity: 1;
}


.alert.fade-out {
  transform: translate(-50%, -200px);
  opacity: 0;
}

.alert-problem {
  background-color: #FEEDEC;
  border-color: #EA5455;
  color: #EA5455;
}