* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
  }
  
  body {
    background:linear-gradient(45deg,
    rgba(255, 255, 255, 0.8) 0%,
    #FF6600 100%);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .tela {
    position: absolute;
    left: 22%;
    top: 12%;
    width: 55%;
    height: 78vh;
    background-color: #fff;
    padding: 4.5em 3em;
    border-radius: 10px;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: hidden;
  }
  .tela .imgBgerror img {
    width: 200px;
  }
  .tela .imgBgsucesso img {
    width: 180px;
  }
  .tela .text h2 {
    font-size: 24pt;
    color: #333;
    font-weight: 500;
    margin-top: 10%;
  }
  .formBx hgroup{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .formBx hgroup div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
    .formBx hgroup div p{
      color:#6666;
      font-size: 12px;
    }

  
  section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  section .container {
    position: relative;
    width: 800px;
    height: 500px;
    background-color: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 8px;
  }
  section .container .user {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
  }
  section .container .user .imgBx {
    position: relative;
    width: 50%;
    height: 100%;
    background-color: #fff;
    transition: 0.5s;
  }
  section .container .user .imgBx p {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
  }
  section .container .user .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section .container .user .formBx {
    position: relative;
    width: 50%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: 0.5s;
  }
  section .container .user .formBx .infoValidar {
    position: absolute;
    top: 4%;
    color: red;
  }
  section .container .user .formBx form h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    color: #555;
  }
  section .container .user .formBx form input {
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: #f5f5f5;
    color: #333;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 8px 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
  }
   section .container .user .formBx form select {
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: #f5f5f5;
    color: #333;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 8px 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
  }
  section .container .user .formBx form button {
    max-width: 100px;
    padding: 10px 14px;
    border: none;
    outline: none;
    background-color: #FF6600;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.5s;
  }
  section .container .user .formBx form .entar {
    max-width: 100px;
    padding: 10px 14px;
    border: none;
    outline: none;
    background-color: #FF6600;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.5s;
  }
  section .container .user .formBx form button:hover{
    background-color: #fa934f;
  }
  section .container .user .formBx form .entar:hover{
    background-color: #ee9154;
  }
  section .container .user .formBx form .signup {
    position: relative;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
    font-weight: 300;
  }
  section .container .user .formBx form .signup a {
    font-weight: 600;
    text-decoration: none;
    color: #FF6600;
  }
  section .container .singupBx {
    pointer-events: none;
  }
  section .container .singupBx .formBx {
    left: 100%;
  }
  section .container.active .singupBx {
    pointer-events: initial;
  }
  section .container.active .singupBx .formBx {
    left: 0;
  }
  section .container .singupBx .imgBx {
    left: -100%;
  }
  section .container.active .singupBx .imgBx {
    left: 0;
  }
  section .container .singinBx .formBx {
    left: 0;
  }
  section .container.active .singinBx .formBx {
    left: 100%;
  }
  section .container .singinBx .imgBx {
    left: 0;
  }
  section .container.active .singinBx .imgBx {
    left: -100%;
  }
  
  @media (max-width: 991px) {
    section .container {
      width: 400px;
    }
    section .container .imgBx {
      display: none;
    }
    section .container .user .formBx {
      width: 100%;
    }
  }/*# sourceMappingURL=style.css.map */
  #loading {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      font-family: 'Segoe UI', sans-serif;
    }
    .spinner {
      width: 60px;
      height: 60px;
      border: 6px solid #ccc;
      border-top-color: #007bff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .loading-text {
      margin-top: 15px;
      font-size: 1.2rem;
      color: #007bff;
    }