  /*
 Theme Name: Woodmart Child
 Template: woodmart
*/
  .register-page-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background-image: url('https://perfectfashion.al/wp-content/uploads/2025/06/image-7-1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 40px;
    box-sizing: border-box;
  }

  .form-section {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 60px;
  }

  .form-section h2 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }

  .form-section p.description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-row {
    margin-bottom: 20px;
  }

  .form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
  }

  .required {
    color: #e74c3c;
  }

  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
  }

  .form-row input[type="text"]:focus,
  .form-row input[type="email"]:focus,
  .form-row input[type="password"]:focus {
    outline: none;
    border-color: #666;
    background-color: #fff;
  }

  .form-row input::placeholder {
    color: #aaa;
    font-size: 0.9rem;
  }

  .form-row.checkbox-row {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }

  .form-row.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
    line-height: 1.4;
  }

  .form-row.checkbox-row input[type="checkbox"] {
    margin-top: 2px;
    width: auto;
  }

  .form-row.checkbox-row a {
    color: #333;
    text-decoration: underline;
  }

  .woocommerce-Button.button {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-bottom: 20px;
  }

  .woocommerce-Button.button:hover {
    background-color: #333;
  }

  .already-account {
    font-size: 0.9rem;
    text-align: left;
    color: #666;
  }

  .already-account a {
    color: #333;
    text-decoration: underline;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .register-page-container {
      flex-direction: column;
      padding: 20px;
      justify-content: center;
    }

    .form-section {
      max-width: 100%;
      margin-left: 0;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }
  }

  .order-summary-checkout{
    position: sticky;
    top: 10%;
  }

  