.elementor-11006 .elementor-element.elementor-element-c84c5b9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:30px;--padding-bottom:30px;--padding-left:30px;--padding-right:30px;}.elementor-11006 .elementor-element.elementor-element-6a3b40c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-12a0559 */#auth-wrapper {
    max-width: 400px;
    margin: auto;
    padding: 3rem;
    font-family: sans-serif;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
  }

  .auth-toggle {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
  }

  .auth-toggle button {
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
  }

  .auth-toggle button.active {
    background: #333;
    color: white;
  }

  .form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-container input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .form-container button {
    padding: 10px;
    background: #222;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .error {
    color: red;
    margin-bottom: 1rem;
    text-align: center;
  }
  

  #success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in;
  }

  .popup-content {
    background: #dff0d8;
    color: #3c763d;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: scaleIn 0.3s ease-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }/* End custom CSS */