body {
    background-color: #fff; /* fondo blanco */
    color: #000; /* texto negro */
}

/* === LOGIN & REGISTER Containers === */
.login-container, 
.register-container {
    min-height: 100vh; /* ocupar altura completa */
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box, 
.register-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.login-title,
.register-title {
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Inputs minimalistas (solo redondeados, sin borde negro forzado) */
.login-input,
.register-input {
    border-radius: 5px;
}

/* Botones */
.btn-login,
.btn-register,
.btn-custom {
    background-color: #000; /* negro */
    color: #fff; /* texto blanco */
    font-weight: 500;
    border: none;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    transition: background-color 0.2s ease-in-out;
}

.btn-login:hover,
.btn-register:hover,
.btn-custom:hover {
    background-color: #333; /* gris oscuro */
    color: white;
}

/* Enlaces */
.link-register,
.link-login {
    color: #000;
    text-decoration: none;
}

.link-register:hover,
.link-login:hover {
    text-decoration: underline;
}

/* === INDEX === */
.main-content {
    background-color: #fff;
    color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* === NAVBAR CUSTOM === */
.navbar-custom {
    background-color: #fff;
    color: #000;
}

/* Marca */
.navbar-custom .navbar-brand {
    color: #000;
    font-size: 1.2rem;
    transition: opacity 0.3s ease-in-out;
}
.navbar-custom .navbar-brand:hover {
    opacity: 0.7;
}

/* Links */
.navbar-custom .nav-link {
    color: #000;
    font-weight: 500;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
}
.navbar-custom .nav-link:hover {
    opacity: 0.7;
    color: #000;
}

/* Logout en rojo */
.logout-link {
    color: red !important;
    font-weight: bold;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
}
.logout-link:hover {
    opacity: 0.7;
    color: darkred !important;
}

/* Usuario */
.user-info {
    color: #000;
    cursor: pointer; /* cursor de mano */
    transition: opacity 0.3s ease-in-out;
}
.user-info:hover {
    opacity: 0.7; /* atenuado */
}

/* === DASHBOARD CONTENT === */
.dashboard-container {
    min-height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dashboard-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
}



/* === INDEX (Página principal) === */
.main-content {
    background-color: #fff; /* fondo blanco */
    color: #000; /* texto negro */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Botón custom */
.btn-custom-in {
    background-color: #000; /* negro */
    color: #fff; /* texto blanco */
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all .2s ease-in-out;
    width: 200px;
}
.btn-custom-in:hover {
    background-color: #333;
    color: #fff;
}
