.login-page{
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f2f5, #dfe6ee);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Card */
.login-card{
    background: white;
    width: 320px;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.4s ease-in-out;
}

/* Título */
.login-title{
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
}

/* Form */
.login-card form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Campo */
.campo{
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.campo label{
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #555;
}

.campo input{
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    transition: 0.2s ease;
    font-size: 0.95rem;
}

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

/* Botão */
.btn-login{
    margin-top: 10px;
    background-color: #2563eb;
    color: white;
    border-radius: 8px;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.2s ease;
}

.btn-login:hover{
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-login:active{
    transform: translateY(0);
}

/*---------------------------NavBar---------------------*/

.text-sevendesk{
  color:#0053b0;
}

.dropdown-menu{
  border-radius:12px;
}

.dropdown-item{
  border-radius:8px;
  transition: all .2s ease;
}

.dropdown-item:hover{
  background-color:#eef4ff;
  padding-left:18px;
}

/*---------------NavList---#0053b0----------*/

.text-sevendesk{
  color:#0053b0;
}

.table-seven-header th{
  background:#f8f9fa;
  color:#232323;
  border-bottom:0;
  font-weight:600;
}

.card{
  border-radius: 14px;
}

.dropdown-menu{
  border-radius:12px;
}

.dropdown-item{
  border-radius:8px;
  transition: all .2s ease;
}
.dropdown-item:hover{
  background-color:#eef4ff;
  padding-left:18px;
}

/* Animação Login */
@keyframes fadeIn {
    from{
        opacity: 0;
        transform: translateY(10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

