/* body {
    font-family: Arial, sans-serif;
    background-color: #1d2530
}

.register-container {
    width: 350px;
    margin: 100px auto;
    padding: 20px;
    background-color: #14182c;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-primary {
    background-color: #007bff;
    border: none;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.button-register{
    border-radius: 8px;
    width: 100%;
    height: 20px;
    border-radius: 8px;
    background-color: gold;

    height: 40px;
    font-size: 20px;
    font-weight: bold;
}
.form-group{
    display: flex;
    flex-direction: column;
}
.form-control{
    background: #303346;
    border: transparent;
    border-radius: 20px;
    margin: 10px;
    height: 50px;
    font-size: 20px;
    color: white;
    padding-left: 10px;
}
.text-center{
    margin-left: 20px;
    color: white;
    font-size: 30px;
    display: flex
;
} */


:root {
    --primary-blue: #000;
    --accent-orange: #ffa700;
    --font-title: 'Titillium Web', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --light-bg: #ffffff;
  }
  
  body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--primary-blue);
  }
  
  .registro-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--primary-blue);
  }
  
  .registro-card {
    background-color: var(--light-bg);
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    flex-direction: row;
  }
  
  .form-section {
    flex: 1;
    padding: 3rem 2rem;
  }
  
  .titulo {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .subtitulo {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .form-control {
    border-radius: 12px;
    height: 45px;
    padding-left: 1rem;
    font-size: 0.95rem;
  }
  
  .btn-orange {
    background-color: var(--accent-orange);
    color: black;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: none;
    transition: background 0.3s ease;
  }
  
  .btn-orange:hover {
    background-color: #ffc74d;
  }
  
  .texto-login {
    font-size: 0.9rem;
    color: #444;
  }
  
  .texto-login a {
    color: var(--primary-blue);
    font-weight: bold;
    text-decoration: none;
  }
  
  .imagen-section {
    flex: 1;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .imagen-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .btn-orange {
    background-color: var(--accent-orange);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
  }
  /* Estilo para el botón cuando está deshabilitado */
button:disabled {
  background-color: #666; /* Color de fondo gris */
  color: #000; /* Color del texto */
  cursor: not-allowed; /* Cursor de no permitido */
  opacity: 0.7; /* Opacidad para dar un efecto visual */
  border: 1px solid #aaa; /* Borde más claro */
}
form {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

form[style*="display: none"] {
  opacity: 0;
  visibility: hidden;
}
  @media (max-width: 768px) {
    .registro-card {
      flex-direction: row;
      border-radius: 20px;
    }
  
    .imagen-section {
      height: 250px;
    }
  
    .form-section {
      padding: 2rem 1.5rem;
    }
  }
  .password-validation {
    font-size: 0.9rem;
    color: #dc3545; /* Bootstrap danger color */
  }
  .password-validation p {
    margin: 0;
  }
  .password-validation .text-success {
    color: #28a745; /* Bootstrap success color */
  }
  .valid-ususario{
    color:#666;
    font-size: 15px;
    font-style: italic;
  }