html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


body {
    background-color: #f5f6f8;
}

/* Centralização */
.login-container {
    justify-content: center;
    align-items: center;
   /* height: 100vh; */
      display: grid;
    place-items: center; /* Centraliza horizontal e verticalmente */
    height: 100vh;       /* Ocupa a altura toda da tela */
    width: 100%;
}

/* Card */
.login-card {
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Header azul */
.login-header {
    background: linear-gradient(180deg, #3a78c2, #2f66b3);
    color: white;
    padding: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.back-icon {
    margin-right: 10px;
    cursor: pointer;
}

/* Corpo */
.login-body {
    padding: 20px;
}

.login-title {
    color: #2f66b3;
    margin-bottom: 15px;
}

/* Inputs */
.input-custom {
    border-radius: 10px;
    padding: 10px;
}

/* Botão */
.btn-login {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(180deg, #3a78c2, #2f66b3);
    border: none;
    padding: 10px;
    font-weight: bold;
}

/* Link cadastro */
.register-link {
    margin-top: 15px;
    text-align: center;
}

body {
    background-color: #f5f6f8;
    margin: 0;
}

/* Centralização */
.welcome-container {
   /*  display: flex;*/
    justify-content: center;
    align-items: center;
    /*height: 100vh; */
    display: grid;
    place-items: center; /* Centraliza horizontal e verticalmente */
    height: 100vh;       /* Ocupa a altura toda da tela */
    width: 100%;
}

/* Card */
.welcome-card {
   /* width: 360px; */
   width: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
}

/* Header */
.welcome-header {
    background: linear-gradient(180deg, #3a78c2, #2f66b3);
    color: white;
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

.header-icon {
    width: 35px;
}

/* Imagem */
.welcome-image img {
    width: 80%;
    margin-top: 20px;
}

/* Corpo */
.welcome-body {
    padding: 20px;
}

.welcome-body h3 {
    color: #2f66b3;
    margin-bottom: 10px;
}

.welcome-body p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}
.hub-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    max-width: 1100px;
    padding: 20px;
}

/* Imagem */
.hub-image img {
    max-width: 500px;
    width: auto;
    height:  auto;
    border-radius: 12px;
}

/* Box (mantém seu estilo) */
.hub-info-box {
    max-width: 500px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVO (mobile) */
@media (max-width: 900px) {
    .hub-container {
        flex-direction: column;
        text-align: center;
    }

    .hub-image img {
        max-width: 100%;
    }
}