*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*body {
    height: 100vh;
    background-color: #F3F4F6;
    display: flex;
    justify-content: center;
    align-items: center;
}*/

body {
    height: 100vh;
    background-color: #F3F4F6;
    display: flex;
    flex-direction: column; /* ADICIONE ISSO */
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}


/*.logo {
    margin-bottom: 25px;
}*/

.logo {
    margin-bottom: 10px;
    text-align: center;
}

.logo img {
    width: 185px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h2 {
    margin-bottom: 25px;
    color: #1f2937;
    font-weight: 600;
}

.input-group {
    text-align: left;
    margin-bottom: 18px;
}

.input-group label {
    font-size: 14px;
    color: #374151;
    display: block;
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 12px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #2563EB;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: #6B7280;
    user-select: none;
}

.forgot-password {
    text-align: right;
    font-size: 13px;
    margin-bottom: 20px;
}

.forgot-password a {
    text-decoration: none;
    color: #2563EB;
    font-weight: 500;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: #1E40AF;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-button:hover {
    background: #2563EB;
}

.register {
    margin-top: 20px;
    font-size: 14px;
}

.register a {
    text-decoration: none;
    color: #2563EB;
    font-weight: 600;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
}

.description {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 20px;
    text-align: center;
}

.logo{
  font-weight:600;
  font-size:18px;
  display:flex;
  gap:6px;

  margin-bottom: 10px;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.logo-text{
  display:inline; /* garante que não separa */
}

.logo-remessa{
  color:#0f172a; /* escuro elegante */
}



/* ícone */
.logo i{
  color:#2563eb;
}

.logo-hub{
  color:#2563eb;
  transition:.3s;
}

.logo:hover .logo-hub{
  color:#1d4ed8;
}