body {
            background-color: #f29037;
            font-family: Arial, Helvetica, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh; /* min-height es mejor para móviles */
            margin: 0;
            padding: 20px; /* Evita que el cuadro pegue a los bordes en el celular */
        }

        .login-container {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            width: 100%; /* Ocupa el 100% disponible... */
            max-width: 360px; /* ...pero no más de 360px */
            text-align: center;
            box-sizing: border-box;
        }

        .login-container img {
            width: 90px;
            height: auto;
            margin-bottom: 10px;
        }

        h2 {
            color: #f29037;
            margin-bottom: 20px;
            font-weight: bold;
            font-size: 1.5rem; /* Tamaño relativo */
        }

        .input-container {
            position: relative;
            margin-bottom: 15px;
            width: 100%;
        }

        .input-container i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #f29037;
            font-size: 18px;
        }

        .input-container input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px; /* 16px evita que iOS haga zoom automático al escribir */
            box-sizing: border-box;
        }

        button {
            background-color: #f29037;
            color: white;
            border: none;
            width: 100%; /* Botón ancho para facilitar el clic en móviles */
            padding: 12px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;
        }

        button:hover {
            background-color: #944100;
        }

        .error {
            color: red;
            background-color: #ffe6e6; /* Fondo ligero para que se lea mejor */
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            font-size: 14px;
            border: 1px solid #ffcccc;
        }