:root {
    --primary-color: #D01818;
    --primary-hover: #B01515;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E5E7EB;
    --input-bg: #F9FAFB;
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --font-en: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-ar: "Cairo", sans-serif;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .text-center {
    text-align: center;
  }

  html[dir=rtl] body, html[dir=rtl] input, html[dir=rtl] button, html[dir=rtl] select, html[dir=rtl] textarea {
    font-family: var(--font-ar);
  }
  html[dir=rtl] .auth-form .form-group {
    text-align: right;
  }
  html[dir=rtl] .auth-form .auth-links {
    flex-direction: row;
  }
  html[dir=rtl] .language-switcher {
    left: var(--spacing-lg);
    right: auto;
  }
  html[dir=rtl] .back-website {
    left: 8.4rem;
    right: auto;
  }

  html[dir=ltr] body, html[dir=ltr] input, html[dir=ltr] button, html[dir=ltr] select, html[dir=ltr] textarea {
    font-family: var(--font-en);
  }
  html[dir=ltr] .language-switcher {
    right: var(--spacing-lg);
    left: auto;
  }
  html[dir=ltr] .back-website {
    right: 8.4rem;
    left: auto;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-en);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--white);
  }

  .auth-container {
    display: flex;
    min-height: 100vh;
  }
  @media (max-width: 768px) {
    .auth-container {
      flex-direction: column;
    }
  }

  .auth-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  @media (max-width: 768px) {
    .auth-form-container {
      max-width: 100%;
      padding: var(--spacing-lg);
    }
  }

  .auth-info-container {
    flex: 1;
    background-color: var(--gray-100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .auth-info-container {
      display: none;
    }
  }
  .auth-info-container .auth-info-inner {
    text-align: center;
    max-width: 80%;
    z-index: 2;
  }
  .auth-info-container .auth-info-inner img {
    max-width: 80%;
    height: auto;
    margin-bottom: var(--spacing-xl);
  }
  .auth-info-container .auth-info-inner h2 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
  }
  .auth-info-container .auth-info-inner p {
    color: var(--text-light);
  }

  .language-switcher {
    position: absolute;
    top: var(--spacing-lg);
    z-index: 10;
  }
  .language-switcher button {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }
  .language-switcher button:hover {
    background-color: var(--gray-100);
  }
  .language-switcher button img {
    width: 20px;
    height: 20px;
  }

  .back-website {
    position: absolute;
    top: var(--spacing-lg);
    z-index: 10;
  }
  .back-website a {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    outline: none;
  }
  .back-website a:hover {
    background-color: var(--gray-100);
  }

  .auth-form {
    width: 100%;
  }
  .auth-form .auth-logo {
    margin-bottom: var(--spacing-xl);
    text-align: center;
  }
  .auth-form .auth-logo img {
    height: 40px;
    width: auto;
  }
  .auth-form .auth-title {
    margin-bottom: var(--spacing-lg);
  }
  .auth-form .auth-title h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
  }
  .auth-form .auth-title p {
    color: var(--text-light);
  }
  .auth-form .form-group {
    margin-bottom: var(--spacing-md);
  }
  .auth-form .form-group .invalid-feedback {
    color: #d01818;
    font-size: 14px;
    background-color: #ffffff;
    padding: 2px 10px;
    margin-top: 7px;
    border-radius: 5px;
    border: 1px solid #d01818;
  }
  .auth-form .form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    font-size: 0.875rem;
  }
  .auth-form .form-group input:not([type=checkbox]) {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
    font-size: 1rem;
    transition: all 0.2s ease;
  }
  .auth-form .form-group input:not([type=checkbox]).is-invalid {
    border: 1px solid var(--primary-color);
    background-color: rgba(208, 24, 24, 0.0784313725);
  }
  .auth-form .form-group input:not([type=checkbox]):focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(208, 24, 24, 0.2);
  }
  .auth-form .form-group .checkbox-wrapper {
    display: flex;
    align-items: center;
  }
  .auth-form .form-group .checkbox-wrapper input[type=checkbox] {
    margin-right: var(--spacing-sm);
  }
  html[dir=rtl] .auth-form .form-group .checkbox-wrapper input[type=checkbox] {
    margin-right: 0;
    margin-left: var(--spacing-sm);
  }
  .auth-form .social-login {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
  .auth-form .social-login a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #000000;
  }
  .auth-form .social-login a:hover {
    background-color: var(--gray-100);
  }
  .auth-form .social-login a img {
    width: 20px;
    height: 20px;
  }
  .auth-form .divider {
    display: flex;
    align-items: center;
    margin: var(--spacing-lg) 0;
  }
  .auth-form .divider::before, .auth-form .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--border-color);
  }
  .auth-form .divider span {
    padding: 0 var(--spacing-md);
    color: var(--text-light);
    font-size: 0.875rem;
  }
  .auth-form .btn-primary {
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .auth-form .btn-primary:hover {
    background-color: var(--primary-hover);
  }
  .auth-form .auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
  }
  .auth-form .auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
  }
  .auth-form .auth-links a:hover {
    text-decoration: underline;
  }
  .auth-form .auth-links button {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
  }
  .auth-form .auth-links button:hover {
    text-decoration: underline;
  }
  .auth-form .otp-inputs {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-lg);
  }
  .auth-form .otp-inputs input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
  }
  .auth-form .otp-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(208, 24, 24, 0.2);
  }

  .iti {
    width: 100%;
  }
  .iti .iti__flag-container {
    z-index: 3;
  }
  .iti .iti__country-list {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-height: 200px;
  }

  .toastify {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    background: unset !important;
  }
  .toastify .toast-close {
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: unset;
    width: unset;
    padding: 0;
    background-color: transparent;
  }
  .toastify .toast-close:hover {
    color: #fff;
  }

  .toast-success {
    background: #10b981 !important;
  }

  .toast-error {
    background: #ef4444 !important;
  }

  .toast-warning {
    background: #f59e0b !important;
    color: #333 !important;
  }

  .toast-info {
    background: #3b82f6 !important;
  }

  [dir=rtl] .toastify {
    text-align: right;
  }

  /*# sourceMappingURL=app.css.map */
