/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffb92e;
    background-color: #052b55;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/logos/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
}

.sidebar {
    min-height: 100vh;
     background-color: #b1b1b6!important; 
    position: relative;
    z-index: 2; 
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 5px;
    border-radius: 5px;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background-color: rgba(255, 142, 13, 0.1);
}

.nav-link i {
    margin-right: 10px;
}

/*Login*/
.screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
}

.form-block-login {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #002148;
}

.form-block-login h2 {
  margin-bottom: 1rem;
}

.form-block-login img {
  height: 140px;
  margin: 1rem 0;
}
.form-fields {
  margin-top: 1rem;
}

.form-fields-row {
  margin-bottom: 1rem;
}

.form-fields-row input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

.form-btn {
  padding: 0.8rem;
  width: 100%;
  background-color: #3c3d91;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.form-btn:hover {
  background-color: #2a2b6d;
}

.error {
  color: red;
  margin-top: 0.5rem;
}


/* Responsive */
@media (max-width: 767.98px) {
    .sidebar {
        min-height: auto;
    }
}
