/* General page styles */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #191D20, #513D3F);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Login container */
  .form-container {
    width: 100%;
    max-width: 320px;
    border-radius: 0.75rem;
    background-color: #191D20;
    padding: 2rem;
    color: #DFDED9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  /* Title */
  .title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
  }
  
  /* Form section */
  .form {
    margin-top: 1.5rem;
  }
  
  .input-group {
    margin-top: 0.75rem; /* espacio vertical entre campos */
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .input-group input {
    width: 90%; 
    max-width: 280px; 
    border-radius: 0.375rem;
    border: 1px solid #513D3F;
    outline: 0;
    background-color: #191D20;
    padding: 0.75rem 1rem;
    color: #DFDED9;
    transition: border-color 0.3s ease;
    margin-bottom: 0.5rem;
  }
  
  .input-group label {
    display: block;
    color: #DFDED9;
    margin-bottom: 4px;
    text-align: right;
  }
  
  
  .input-group input:focus {
    border-color: #ED2839;
  }
  
  /* Forgot password */
  .forgot {
    display: flex;
    justify-content: flex-end;
    font-size: 0.75rem;
    line-height: 1rem;
    color: #DFDED9;
    margin: 8px 0 14px 0;
  }
  
  .forgot a, .signup a {
    color: #DFDED9;
    text-decoration: none;
    font-size: 14px;
  }
  
  .forgot a:hover, .signup a:hover {
    text-decoration: underline #ED2839;
  }
  
  /* Submit button */
  .sign {
    display: block;
    width: 100%;
    background-color: #ED2839;
    padding: 0.75rem;
    text-align: center;
    color: #191D20;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .sign:hover {
    background-color: #c91e2f;
  }
  
  /* Social login */
  .social-message {
    display: flex;
    align-items: center;
    padding-top: 1rem;
  }
  
  .line {
    height: 1px;
    flex: 1 1 0%;
    background-color: #513D3F;
  }
  
  .social-message .message {
    padding: 0 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #DFDED9;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .social-icons .icon {
    border-radius: 0.125rem;
    padding: 0.75rem;
    border: none;
    background-color: transparent;
    margin-left: 8px;
    cursor: pointer;
  }
  
  .social-icons .icon svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: #DFDED9;
    transition: transform 0.3s ease;
  }
  
  .social-icons .icon:hover svg {
    transform: scale(1.2);
  }
  
  /* Signup message */
  .signup {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    color: #DFDED9;
    margin-top: 1rem;
  }
  
  /* Responsive tweaks */
  @media (max-width: 400px) {
    .form-container {
      padding: 1.5rem;
      margin: 1rem;
    }
  }
  

