/* app/assets/stylesheets/custom.css */

/* Estilos generales */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa; /* Fondo claro */
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Contenedor del formulario */
  .form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border-top: 4px solid #d9534f; /* Rojo de Sidekiq */
  }
  
  /* Título del formulario */
  .form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #d9534f; /* Rojo de Sidekiq */
  }
  
  /* Campos del formulario */
  .form-container .field {
    margin-bottom: 15px;
  }
  
  .form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
  }
  
  .form-container input[type="text"],
  .form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s;
  }
  
  .form-container input[type="text"]:focus,
  .form-container input[type="password"]:focus {
    border-color: #d9534f; /* Rojo de Sidekiq */
    outline: none;
  }
  
  /* Botón de envío */
  .form-container .actions {
    text-align: center;
  }
  
  .form-container .actions input[type="submit"] {
    background-color: #d9534f; /* Rojo de Sidekiq */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
  }
  
  .form-container .actions input[type="submit"]:hover {
    background-color: #c9302c; /* Tonalidad más oscura del rojo */
  }
  
  .card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
  }
  
  .card {
    background-color: white;
    border: 1px solid #d9534f;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .card a {
    text-decoration: none;
    color: #d9534f;
    font-weight: bold;
    font-size: 18px;
  }
  
  .card a:hover {
    color: #c9302c;
  }
