/* ============================================================
   LOGIN + SELECCIÓN DE EMPRESA
============================================================ */

.bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.left-orange {
    background: #f5650d;
    width: 100%;
    height: 100%;
    position: absolute;
    clip-path: polygon(0 0, 70% 100%, 0 100%);
}

.right-blue {
    background: #1c1c3c;
    width: 100%;
    height: 100%;
    position: absolute;
    clip-path: polygon(100% 0, 100% 100%, 30% 100%);
}

/* Caja login */
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.login-box input {
    width: 90%;
    padding: 10px;
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn {
    width: 95%;
    padding: 10px;
    background: #f5650d;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 12px; /* ajusta este valor si quieres más/menos espacio */
}

/* Empresas */
.empresas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 15px;
}

.empresa-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.empresa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.empresa-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}
