body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: "Google Sans", sans-serif;
    background-color: #000;
}

.card {
    height: 80vh;
    width: 40%;    /* Ocupa el 40% del ancho */
    background-color: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    z-index: 20;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el contenido verticalmente */
    margin-left: 20px;
}

.logo-login {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
    margin-left: -10px;
}

.subtitle-motrack {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.subtitle-operadores {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #118e18; /* Color verde para resaltar */
}

.card-header {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 20px;
}

.card-header h3 {
    color: white;
    font-weight: 600;
}

.input-group-prepend span {
    width: 45px;
    background-color: #118e18;
    color: white;
    border: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_btn {
    color: white;
    background-color: #118e18;
    width: 100%;
    border-radius: 5px;
    padding: 12px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.login_btn:hover {
    color: white;
    background-color: #0d6e12;
    cursor: pointer;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    height: 45px;
    transition: background-color 0.3s, border-color 0.3s;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #118e18;
    color: white !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Evitar el fondo blanco/amarillo de autofill del navegador */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(30, 30, 30, 1) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
