  
   /* RESPONSIVE */
    /* RESPONSIVE */
   @media (max-width: 768px) {
     .T {
       font-size: 1.8rem;
     }
   
     #fot {
       font-size: 0.9rem;
       padding: 0.8rem;
     }
   }
   
   @media (max-width: 480px) {
     .T {
       font-size: 1.5rem;
     }
   
     #fot {
       font-size: 0.8rem;
       padding: 0.7rem;
     }
  
   .logo {
    width: 100%;
    max-height: 40%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .form-container {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 320px;
    z-index: 2;
  }
  
  h2 {
    text-align: center;
    color: #2c3e50;
  }
  
  label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
  }
  
  input[type="text"],
  input[type="password"],
  input[type="email"] {
    width: 70%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
    transition: border-color 0.3s;
  }
  
  input:focus {
    border-color: #2980b9;
    outline: none;
  }
  
  .button-login {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .button-login:hover {
    background: linear-gradient(to right, #2ecc71, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .registro {
    color: blue;
    cursor: pointer;
    display: block;
  }
  
  .fondo {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
  }
  
  .main-wrapper {
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50%;
    position: relative;
    z-index: 1;
  }
  .main-wrapper2 {
    background-image: url('/bender/img/fff.png'); /* Asegúrate de que esta ruta sea correcta */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .login-container form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre elementos */
    width: 50vh; /* Ajusta el ancho a tu preferencia */
    margin: 0 auto;
  }
  
  .login-container input,
  .login-container select,
  .login-container button
  {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .cuadrante {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
  }
  
  .cuadrante h2 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
  }
  
  /* FORMULARIO */
  .form-groupp {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
  
  input[type="file"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  textarea {
    resize: vertical;
  }
  
  .perfil {
      background-color: #ffffff;
      padding: 30px;
      max-width: 400px;
      margin: 60px auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 2;
      text-align: center;
  }
  .foto-perfil {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 4px solid #4CAF50;
  }
  .btn {
      display: inline-block;
      background: linear-gradient(135deg, #4CAF50, #2E7D32);
      color: white;
      padding: 10px 25px;
      margin: 8px 4px;
      border: none;
      border-radius: 8px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
  }
  .btn:hover {
      background: linear-gradient(135deg, #388E3C, #1B5E20);
      transform: scale(1.05);
  }
  input[type="file"] {
      display: none;
  }
  p {
      text-align: left;
      margin-top: 20px;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #333;
  }
  .perfil h2 {
      margin-bottom: 20px;
      color: #2c3e50;
  }
  
}