:root {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    --text-black: #000;
    --text-black-secundary: #000000d3;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
  }
  
  /* Globals */
    input {
      width: 100%;
      font-size: 1rem;
      padding: 1rem;
      border: 1px solid #000000d5;
    }
    label {
      color: var(--text-black-secundary);
    }
    select {
      width: 100%;
      background-color: #fff;
      padding: 1rem;
      border: 1px solid #000000d5;
      font-size: 1rem;
      color: #000000b2;
    }
  
    button {
      background-color: #4f0a18;
      border: 1px transparent;
      padding: 1rem;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      font-size: 0.9rem;
    }
  /* End Globals */
  
  /* Styles Form */
    .container-form {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 3rem 0;
    }
    .form__title {
      text-align: center;
      margin-bottom: 1rem;
    }
    .form-signup {
      background-color: #fff;
      box-shadow: 4px 4px 4px #00000011;
      width: 100%;
      max-width: 56rem;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  
    .form__group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    .form__item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .form-parragraph {
      text-align: center;
    }
  /* End Styles Form */
  
  #password-error-message {
    color: red;
    margin-top: 5px;
  }
  
  .alert-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 25px;
  }
  
  .success {
    background-color: #4caf50;
    color: white;
  }
  
  .error {
    background-color: #ac190f;
    color: white;
  }