/* login_cliente.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #000000, #b71c1c);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  .container {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    width: 320px;
    text-align: center;
  }
  
  .container h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: none;
    border-radius: 8px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
  }
  
  button {
    background-color: #d32f2f;
    border: none;
    color: white;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
  }
  
  button:hover {
    background-color: #a30000;
  }